Please could someone kindly help fix IF/INDEX/MATCH formula
Hello
I need a little help if possible
Original Formula:
=INDEX({Jira MMP's Validation Results - Jira Status}, MATCH([Req ID]@row, {Jira MMP's Validation Results - MMP ID}, 0))
Which worked perfectly to change the status in sheet 2 to match sheet 1 if REQ ID and MMP ID matched, but this is when there was only a single set of results in the sheet
I now need to adapt the formula to include the project epic so if the value of the epic = "1330" for instance update the cell
Formula:
=IF({Jira MMP's Validation Results - Epic} = "GBT1330", (INDEX({Jira MMP's Validation Results - Jira Status}, MATCH([Req ID]@row, {Jira MMP's Validation Results - MMP ID}, 0))))
Any help would be greatly appreciated.
Sheet 1
Sheet 2 to be updated
Thanks
Garry
Answers
-
It sounds like you will need an INDEX/COLLECT instead.
=INDEX(COLLECT({Range To Pull}, {1st Criteria Range}, 1st criteria, {2nd Criteria Range}, 2nd criteria), 1)
-
=INDEX(COLLECT({Jira MMP's Validation Results - Jira Status}, ([Req ID]@row, {Jira MMP's Validation Results - MMP ID}, {Jira MMP's Validation Results - Epic} = "GBT1330"), 1)
Still get Unparseable..
-
You have an extra opening parenthesis that needs removed (after the first {Range}), and your syntax is off.
It should be
range, range, criteria, range, criteria
you have
range, criteria, range, range criteria
(note that you should also have commas between each piece)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!