JF_Gophers
2147483647
Re: Excel Help v. 1,000,000
Each field you want filled in on the output page would have an INDIRECT formula in it that points to the data it needs.
If you had a worksheet called DATA1 and DATA2 listed in a drop down menu. Selecting either of those values would fill in the INDIRECT formula for each field that needs to be populated and find the correct value from that worksheet.
Example: =INDIRECT(CONCATENATE(A3,"!","A1"))
A3 is the drop down menu choice: DATA1
"!" makes it a worksheet reference when indirect uses it.
"A1" is the data you want to take from that worksheet.
If the field on DATA1!A1 had the value "Hi", that is what would appear on the output page.
There is probably a simpler way, like using tables, but you could use a drop down and formulas to achieve this.Resurrecting this....
This might be solved, somehow, using the hint that FreshFish posted a few posts early, but I can't quite figure out how.
I want to have 2 different spreadsheets, one containing several tabs, each containing data, and the other with a form that I want to populate with the data. The second sheet is a template for a datasheet that I need to create and publish, and first will contain all of the data for all of the variations of the datasheet that I'll need. What I want to be able to do is to go into the second sheet, and select, from a drop down menu, a tab from the first sheet, and have the data from the selected tab populate the template. I am not sure if this is even possible, but I need to give it a try,or else I'll end up with 30-40 spreadsheets that I need to change every time there is a template change.
Any help is greatly appreciated!
Each field you want filled in on the output page would have an INDIRECT formula in it that points to the data it needs.
If you had a worksheet called DATA1 and DATA2 listed in a drop down menu. Selecting either of those values would fill in the INDIRECT formula for each field that needs to be populated and find the correct value from that worksheet.
Example: =INDIRECT(CONCATENATE(A3,"!","A1"))
A3 is the drop down menu choice: DATA1
"!" makes it a worksheet reference when indirect uses it.
"A1" is the data you want to take from that worksheet.
If the field on DATA1!A1 had the value "Hi", that is what would appear on the output page.
Last edited: