How to keep a cell blank if there is no data?
I have two sheets a master (2800 records) and a feeder (270 records). I am using the following formula to update a column called scheduled date on the master:
=INDEX({feeder06262021 Range 1}, MATCH(IP@row, {feeder06262021 Range 2}, 0))
Which works bringing the date in, however the majority of the cells on the master sheet are not found in the feeder and the results get posted as #NO MATCH. Which I don't want to see. I would like to the cell to be blank or have the date from the feeder. So how do I incorporate a IF THEN or some sort of true statement to achieve what I am looking for, either a date from the feeder sheet or just be blank?
Best Answer
-
Hi @ed.jaro
You should be able to use the IFERROR function to keep the cell blank.
=IFERROR(INDEX({feeder06262021 Range 1}, MATCH(IP@row, {feeder06262021 Range 2}, 0)),"")
Notice your entire formula is wrapped within the IFERROR.
Does this work for you?
Kelly
Answers
-
Hi @ed.jaro
You should be able to use the IFERROR function to keep the cell blank.
=IFERROR(INDEX({feeder06262021 Range 1}, MATCH(IP@row, {feeder06262021 Range 2}, 0)),"")
Notice your entire formula is wrapped within the IFERROR.
Does this work for you?
Kelly
-
These worked perfectly! Thank you so much.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!