Hello, I am new to smartsheets and am having a little difficulty getting my spreadsheet to print the actual column value when using if and is blank.
I have two columns: a request by date (manual) and due date (automatic).
The formula should first read the request by date column and print that date if there is a value however if the column is blank, then it should print the usual due date.
=IF(ISBLANK([Request Date]@row), ([Due Date]@row,) ([Request Date]@row))
This only gives me an #UNPARSEABLE response.
I was planning to combine this with a simple formula to track days until due via =(above string) - today().
Let me know if I am missing something, thank you!