I'm trying to use the below formula to execute results when [days old] column has the the respective values. I'm receiving incorrect values in the new column.
IF [Days_old] <='0' THEN 'Current'
ELSEIF [Days_old] <='30' THEN '1-30 days'
ELSEIF [Days_old] <='90' THEN '31-90 days'
ELSEIF [Days_old] >'91' THEN 'exceeds 90 days'
ELSEIF [Days_old] >'181' THEN 'exceeds 180 days'
ELSE "ERROR" ENDIF
Any help in rectifying the error will be appreciated. Thanks