Forum Discussion
Help with formula in Exc
The "Type" column from master sheet must be match with the other sheet's name,
Then, use mid and cell function to extract your sheet names, and use filter to return dynamically the data from master sheet, and will update whenever you input more data on the master sheet.
Put this formula to cell A2 of the other sheets. =FILTER(Master!A2:H15,Master!B2:B15=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255),"No data")
I would only note that the formula CELL doesn't work on Excel online or certain other platforms so if compatibility is needed I would suggest just inserting a row at the top and then in Cell A1 put the sheet name and then adapt the above formula to just look at cell $A$1 for the sheetname
Then on the Master you can automatically generate those sheetnames for your data validation using
=VSTACK('Lead:Service Call Form'!A1)
see attached
- marietuttle1973Dec 19, 2024Brass Contributor
Your formula didn't return any data on any of the other sheets