Good afternoon!
I'm attempting to create a formula that will tell me the location where specific data was found.
The issue: There are 52 worksheets, and data can be found on more than 1 sheet.
So far, I have been successful in Counting the number of times the specific data was found using
Where "Sheets" is a named range containing the names for all 52 tabs.
What I can't figure out is how to get the Address for each instance where the data is found.
I have tried using INDEX, ADDRESS, INDIRECT & MATCH in various combinations.
If anyone can help me out with this that would be great!
The end result of this formula would be (hopefully): Worksheet name(s) & Cell reference (A1) if that's even possible.
If more information is needed, please let me know and I will gladly supply it!
Thank you in advance for your assistance.
I'm attempting to create a formula that will tell me the location where specific data was found.
The issue: There are 52 worksheets, and data can be found on more than 1 sheet.
So far, I have been successful in Counting the number of times the specific data was found using
Code:
=SUMPRODUCT(COUNTIF(INDIRECT("'" & Sheets & "'!B8:F8"),"Vacation"))
Where "Sheets" is a named range containing the names for all 52 tabs.
What I can't figure out is how to get the Address for each instance where the data is found.
I have tried using INDEX, ADDRESS, INDIRECT & MATCH in various combinations.
If anyone can help me out with this that would be great!
The end result of this formula would be (hopefully): Worksheet name(s) & Cell reference (A1) if that's even possible.
If more information is needed, please let me know and I will gladly supply it!
Thank you in advance for your assistance.