( by Chuck Whiteley III )
I'm looking for a way to put data from multiple sheets onto one sheet without copy and past. The reason is because I have to add rows to the sheets and would like the combined sheet to update when I add a row. Here is a sample doc:
Sheet "SG":
As you can see by the example, I have 3 sheets in total. 2 of them have data. I want the rows from the 2 sheets with data to appear combined on the 3rd sheet. Of course I would like to leave out the headers if possible.
Thanks for any help you can provide.
You will need to install script VMerge from Script Gallery.
Go to menu "Tools" > "Script gallery" and then search for "vmerge" and then install it.
After you have installed the script "VMerge", put the following formula in Cell A2 of "Combined":
=query(vmerge('ST'!A2:H;'SG'!A2:H);"select * where Col1<>'' ")
I also take up private and confidential projects:
If this blog post was helpful to you, and if you think you want to help me too and make my this blog survive then please donate here: http://igoogledrive.blogspot.com/2012/09/donate.html
Hi Chuck,
ReplyDeleteIf you are having numerical values in column A then try the following formula:
=query(vmerge('ST'!A2:H;'SG'!A2:H);"select * where Col1 is not null ")
Still if you have issues then I would suggest you to share your spreadsheet with some dummy but realistic data, so that I can have a look at it