Doesn’t look like it liked that… now its just errors across the column, even when it was giving the correct {Age} output with the ones with dates and errors that just had no date in the {Approximate Date Issued} Column…
IF(
{Approximate Date Issued} = "",
"",
ROUND(DAYS(TODAY(),
IF(
{Approximate Date Issued} = "",
{Approximate Date Issued})) / 30, 1))
This version of the Formula was working, the only errors it gave out was when there was nothing inside of {Approximate Date Issued}, being a date column that was empty, and it wouldn’t return the 0 or even if I want Text to populate within the column.
IF(
{Approximate Date Issued} = "",
0,
ROUND(DAYS(TODAY(), {Approximate Date Issued}) / 30, 1)
)
GCavin
(Gilles Cavin - Reinventing Formulas in monday.com)
4
It does work. Look:
IF({Approximate Date Issued}="","",ROUND(DAYS(TODAY(),IF({Approximate Date Issued}="",TODAY(),{Approximate Date Issued}))/30,1))
What if we could break free of the Formula column? and write formulas that update any type of columns? What if a formula could update multiple columns at once? This is possible with the Advanced Formula Booster app.