Returning a "blank cell" if fields are not populated
I have the formula below. What can I add to the formula to return a "blank cell" if either of these date fields are not populated?
=NETDAYS([Issue Analysis - Start Date]@row, [Cherwell Ticket - Submitted Date]@row)
Best Answer
-
The IFERROR function will return a blank cell ("") or whatever you specify if any kind of error results from the referenced cells in the formula.
IFERROR(NETDAYS([Issue Analysis - Start Date]@row, [Cherwell Ticket - Submitted Date]@row),"")
Answers
-
The IFERROR function will return a blank cell ("") or whatever you specify if any kind of error results from the referenced cells in the formula.
IFERROR(NETDAYS([Issue Analysis - Start Date]@row, [Cherwell Ticket - Submitted Date]@row),"")
-
That worked. Thank you so much!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!