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
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!