I'm trying to write a macro in excel which allows me to print one of the tabs in my document. I would like to print a key which I have on the first page on all the other pages aswell without copying & pasting the key into each page. Is it possible to do this? I tried using Page Layout-Page Setup- Print titles but it didn't work out for me.
Any help would be greatly appreciated!
Best regards,
Ryan Haughey
Related
I have been trying to find a way to get hyperlinks added into the data pulled from a website. I have tried using //#href combining this into the formula, but have not had any success.
I have also tried pulling the URL from the website in a separate sheet to try and combine the 2 lots of data but again no success.
I'm sure there must be an easy solution to this but having minimal knowledge on excel has made it tricky!
The link to a copy of the spreadsheet is below, and the formula I am currently using to pull data into google sheets is below but has no URL attached to the information when pulled.
=transpose(IMPORTXML(B1,"//div[#id='page-box']/div[2]/ section/div"))
https://docs.google.com/spreadsheets/d/1hiQ5EeGEgQC7kPApCUyR3r_uZb31MVDzdiffqApDdGE/edit?usp=sharing
Hopefully someone can help with this solution. thanks in advance.
Try
=importxml(url,"//div[#class='alphabet__list-column']//a/#href")
edit:
use following xpath
//span[#class='alphabet__list-letter']|//div[#class='alphabet__list-column']//a/#href
to retrieve also the letter
I want to pass the current document (excel file) opened to API.
I tried finding on ways to do it but I found out this which is only for word and power point and this which is for reading specific data from excel. Any idea on how can I achieve that?
I am new at this and not sure where to look.
Thanks for the help in advance.
I have an excel document that have this structure:
[Customer name] [Customer street] [Customer post code]
It has a couple of thousands rows, and I need to separate the into their own files.
I have tried to find someone else that has made the same thing or similar, but without success.
I want to create a script that asks me "Which post code interval do you wanna export?" and answer to that might be "100-300". Then the script exports those rows into a new txt/csv-file that is tab or comma delimited.
Is this even possible in Excel? I am developer but not an Excel developer :D haha.
Would be so grateful to receive some examples on how to do this.
You can use filter option in you excel file it has several option for example you can set a filter on Post code must be bigger then 100 and less then 300
->
I have been creating a data dictionary with each table having a separate Excel sheet.
However now I've got so many tables that using the tabs has become cumbersome.
Has anyone got any suggestions to make them more manageable?
Thanks
I think Darren Bartrup-Cook's answer should do it.
If you right-click the arrows to the left of the tabs you'll get a list of the first 15 tab names and a more sheets option to open a dialog box of sheet names.
(Darren I'm trying to work out how to say your comment was the answer but this was the best I could do)
I'm working on a project where I'm pulling a bunch of information out of a Drupal MySQL database and putting it in a Google Spreadsheet. My problem is that its a lot of data, and I'd prefer to put it all in one spreadsheet, sorting everything by sheet.
I'm not seeing anyway to add a sheet to a spreadsheet nor navigate between existing sheets. Anyone have any idea how to do this? I'd like to this in PHP, and if that doesn't work, Python.
Thanks for your help,
--Scott
This may help
http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#CreatingWorksheets
It's for Protocol/Java though.
Here you go:
https://developers.google.com/apps-script/class_spreadsheet#insertSheet
I guess, you first stumbled along a very similar URL:
https://developers.google.com/apps-script/class_spreadsheetapp#create