I am trying to Date2Num but only wnat to display the Date2Num greater
than 30 days, because i am going to use that to multiply other
numericfields.with help of some genius I have come up with the NumOfdays
formula but need the if statement.
thanksNumOfDays=Date2Num(endDate.rawValue,"YYYY-MM-DD")-
Date2Num(startDate.rawValue,"YYYY-MM-DD")Var NumOfDays = event.target;If
(NumOfDays> 30) thenNumOfDays = NumOfDays - 30NumOfDays.textColor =
color.red; else NumOfDays = “ “NumOfDays.textColor = color.bl...