Hi everyone,
I'd like to have a formulas which reports what we call "Cost Center" from one/multiple sheet into a Year Planning sheet.
I need the formula to give me the "Cost Center" if a cell is matching the name of the collapse one (category) above it.
Source sheet (Master Sheet NL) :
Year Planning sheet :
My formula : =IFERROR(INDEX(COLLECT({Remote Surveillance Master NL Range CC}, {Remote Surveillance Master NL Range RS Quarter}, [Cost Centre]2), 1), "") for the 1st row, then =IFERROR(INDEX(COLLECT({Remote Surveillance Master NL Range CC}, {Remote Surveillance Master NL Range RS Quarter}, [Cost Centre]2), 2), "")
I added the IFERROR to make sure no data is display if there is nothing to see.
My question : because in the future, there might be some new cells added which will match the criteria, is there a way to show a range a cell that match the criteria without having to change everytime the row_index from the INDEX formula? I mean, right now I have 5 rows, but more will be needed in the future, which means row_index will have to change :