Hi there, I’m having some trouble using the General Caster integration “When Column changes, perform formula and cast result to Column” on my board.
I’m trying to use an IF statement to populate a date column if another date (Start Date) changes, depending on the value of a status column (Item Size Estimate):
IF({item’s Item Size Estimate}==“S”, TEXT(DATEVALUE({item’s Start Date})+7,“YYYY-MM-DD”), “DO-NOTHING”)
Eventually I’d like to have 4 nested IFs here based on the status column value but figured I’d try to get one working first.
Whenever I try to run this I get the error: General Caster Formula Error: An unexpected error occurred.
Running the automation without the IF works fine ( i.e. TEXT(DATEVALUE({item’s Start Date})+7,“YYYY-MM-DD”)).
Is there perhaps something wrong with my syntax?