Search a number in multiple tabs and show up the tab name

sureshnov

New member
Joined
Feb 6, 2019
Messages
1
Reaction score
0
Points
0
Excel Version(s)
2010
A1 has some number, search the number on tab "A","B","C" and "D" . then display the tab name in B1 which has the A1 value .

Any idea?

excel guru.jpg
 
Lookup value across multiple sheets and return sheet tab

display the tab name in B1
Try this Array formula
Code:
=IFERROR(INDEX(AllSheets;1/(1/SMALL(IF(ISNUMBER(1/COUNTIFS(INDIRECT("'"&AllSheets&"'!A1:A10");$A2));ROW(INDIRECT("1:"&COUNTIFS(AllSheets;"?*"))));COLUMN(A2))));"")
For details please see this tutorial.
 

Attachments

  • sureshnov9768.png
    sureshnov9768.png
    4.6 KB · Views: 7
Back
Top