index match formula not returning what I intended it
Dear All,
Could you please help me with this formula?
=INDEX({Project Plan - Task name}, MATCH([Start Date]@row, {Project Plan Range 1}, 0))
I wanted to show TASK NAME (from project plan) on the RACI file.
What the formula seems to be returning is the name of item in either the Parent or the Tollgate/Phase column.
Thank you in advance!
Answers
-
Can you show the date column in the project plan as well?
-
Hi @Paul Newcome , yes of course!
Agata
-
So the formula is in fact pulling from the Task Name column, and it is actually operating as expected. The MATCH function will stop on the first match. The first match for 01/10/23 is the dark blue row with "Detailed Project Plan" in it.
What you need is an INDEX/COLLECT to include a filter for the level.
=INDEX(COLLECT({Task Name}, {Start Date}, @cell = [Start Date]@row, {Level}, @cell = 1), 1)
Just change that first 1 to a 2 if you need to pull from the next level down.
=INDEX(COLLECT({Task Name}, {Start Date}, @cell = [Start Date]@row, {Level}, @cell = 2), 1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!