Index/match and Isblank?
Hi,
I've got an Index/Match formula that looks for the latest date on a row and references a particularly column on that row.
Example:
=INDEX((pH:pH), MATCH(MAX(Created:Created), Created:Created, 0))
I'm after a way to make it return a set text "Awaiting Results" if the cell is blank.
I tried IFERROR() but that didn't see the blank as an error. I can't seem to get ISBLANK() to do what I want either.
Anyone know how I would achieve this?
Thanks
Best Answer
-
Typo on my end. See below fixed
=IF(ISBLANK(INDEX(pH:pH, MATCH(MAX(Created:Created), Created:Created, 0))), "Awaiting Results", INDEX(pH:pH, MATCH(MAX(Created:Created), Created:Created, 0)))
Answers
-
Try the below:
=IF(ISBLANK(INDEX(pH:pH, MATCH(MAX(Created:Created), Created:Created, 0))), "Awaiting Results", INDEX([pH:pH]:[pH:pH], MATCH(MAX(Created:Created), Created:Created, 0)))
-
Hi, Unfortunately no luck with that one, unparseable.
-
Typo on my end. See below fixed
=IF(ISBLANK(INDEX(pH:pH, MATCH(MAX(Created:Created), Created:Created, 0))), "Awaiting Results", INDEX(pH:pH, MATCH(MAX(Created:Created), Created:Created, 0)))
-
Many thanks, that works a treat!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!