Hi, I just have a question relating to transferring an equation from Excel to Smartsheet. The below is what I have on Smartsheet, having amended the row references from the Excel format to Smartsheet's, but I'm having an issue where whenever a date is inserted in the [Date Due]@row, the formula just returns the "Contact Admin" placeholder. Otherwise the cell just appears blank.
- Would it be possible to help figure out how best to transfer it to Smartsheet (in Excel, if the [Investigation Completed Date]@row is blank, then it just returns the calculated number of days to go as a numerical value (using 30 as the number of days until overdue, or as a minus value if more than 30).
- Is it related to the error I get on Smartsheets, where if I just do =[Date Due]@row + 30 to get the date + 30 days then I get a #INVALID COLUMN VALUE error? And if so, how to address that if I just want to add 30 days onto a date?
=IFERROR(IF([Date Due]@row = 0, "", (IF([Investigation Completed Date]@row = 0, ([Date Due]@row - 30), IF([Investigation Completed Date]@row > [Date Due]@row, "Complete - Overdue", IF([Investigation Completed Date]@row < [Date Due]@row, "Complete - On Time", "Complete - On Time"))))), "Contact Admin")
Any help is greatly appreciated!