I have a drill down sheet in which I need to collect the plan values from the master.
Master
Drill
The Drill sheet contains SRC ID, Month & Year this can pinpoint a single value in the Master sheet.
If I create a range containing only the Jan column it works:
=INDEX(COLLECT({Master Range Jan Column}, {Master Range SRC ID}, [SRC ID]@row, {Master Range Plan Column}, "Plan"), 1)
However, this requires me to change the formula for each month, I tried creating a range which included all month columns in the range, at first hardcoding to look and index 10 for October but I couldn't get it to work, it wouldn't even work with Index 1:
=INDEX(COLLECT({{Master Range Months}}, {Master Range SRC ID}, [SRC ID]@row, {Master Range Plan Column}, "Plan"), 1,1)
Error is #Incorrect Argument Set
What am I doing wrong? Ideally, I would want to use a column formula and smartsheet workout the Month column automatically (the year is the easier one).
Thanks in advance.