Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am attempting to pull in data from different tabs in my workbook based on
specific month chosen by the user, which is done from a combo box. For example, if user chooses March, I need to pull in data from a tab labeled IM_March. I have the month chosen stored in a specific cell so I tried using a vlookup using the & function ("IM_&e2") with e2 being the stored cell, but that didn't work....anyone can give me some direction. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Not knowing what your ranges in your other sheets are, the following is an example that you can adapt for your need: =VLOOKUP(a1,INDIRECT(CONCATENATE(e2,"!","A1:B6")), 2 OR =VLOOKUP(a1,INDIRECT(e2&"!"&"A1:B6"),2) If this helps, please press YES John "smann" wrote: I am attempting to pull in data from different tabs in my workbook based on specific month chosen by the user, which is done from a combo box. For example, if user chooses March, I need to pull in data from a tab labeled IM_March. I have the month chosen stored in a specific cell so I tried using a vlookup using the & function ("IM_&e2") with e2 being the stored cell, but that didn't work....anyone can give me some direction. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
For the first example i left a parenthesis at the end of the formula out by mistake. It should read: =VLOOKUP(a1,INDIRECT(CONCATENATE(e2,"!","A1:B6")), 2) John "smann" wrote: I am attempting to pull in data from different tabs in my workbook based on specific month chosen by the user, which is done from a combo box. For example, if user chooses March, I need to pull in data from a tab labeled IM_March. I have the month chosen stored in a specific cell so I tried using a vlookup using the & function ("IM_&e2") with e2 being the stored cell, but that didn't work....anyone can give me some direction. Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=INDIRECT("IM_"&E2&"!a1")
with "March" in Ee of the activesheet, this formula will return the value from A1 on the sheet "IM_March" Vaya con Dios, Chuck, CABGx3 "smann" wrote: I am attempting to pull in data from different tabs in my workbook based on specific month chosen by the user, which is done from a combo box. For example, if user chooses March, I need to pull in data from a tab labeled IM_March. I have the month chosen stored in a specific cell so I tried using a vlookup using the & function ("IM_&e2") with e2 being the stored cell, but that didn't work....anyone can give me some direction. Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks, this helped....
"CLR" wrote: =INDIRECT("IM_"&E2&"!a1") with "March" in Ee of the activesheet, this formula will return the value from A1 on the sheet "IM_March" Vaya con Dios, Chuck, CABGx3 "smann" wrote: I am attempting to pull in data from different tabs in my workbook based on specific month chosen by the user, which is done from a combo box. For example, if user chooses March, I need to pull in data from a tab labeled IM_March. I have the month chosen stored in a specific cell so I tried using a vlookup using the & function ("IM_&e2") with e2 being the stored cell, but that didn't work....anyone can give me some direction. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to pull in specific data into multiple worksheets in a workb | Excel Discussion (Misc queries) | |||
How can I pull data from several worksheets? | Excel Discussion (Misc queries) | |||
Can I pull data from worksheets with a batch file? | Excel Discussion (Misc queries) | |||
How can I pull data from a different file from within a formula? | Excel Discussion (Misc queries) | |||
How do I pull certain data from several worksheets in one sheet? | Excel Worksheet Functions |