• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

(more) Excel Formula Help

Homerboy

Lifer
I have multiple sheet in my excel document:

PURCHASED_DATA
MEDICAL_DATA
SPECIAL_DATA
etc..

I have a formula like:

=IF(ISERROR(INDEX(DATA!C:C,MATCH(DATA!$AI2,DATA!$AA:$AA,0))),"0",INDEX(DATA!C:C,MATCH(DATA!$AI2,DATA!$AA:$AA,0)))

I have a drop down menu in a cell that contains:
"Purchased"
"Medical"
"Special"
etc..

How can I construct the above formula to pull the data from the right sheet to match what is chose in the drop down?

Holy hell I realize that probably makes no sense... this is hard to explain.
 
got it:

=IF(ISERROR(INDEX(INDIRECT("'" &$Z$3&"_DATA"&"'!C:C"),MATCH($C7,INDIRECT("'" &$Z$3&"_DATA"&"'!$A:$A"),0))),"",INDEX(INDIRECT("'" &$Z$3&"_DATA"&"'!C:C"),MATCH($C7,INDIRECT("'" &$Z$3&"_DATA"&"'!$A:$A"),0)))
 
Back
Top