Forum Discussion
5 Replies
- QuickBaseCoachDQrew CaptainIt would be something like this as a formula numeric field.
var date MaxDate = Max([date entered], [first assessment complete], [finance review complete], [final review complete date]);
WeekDaySub(today(), $MaxDate) - NoreenJusticeQrew Trainee
Thanks for the quick response. Getting an error message: "The types of the arguments or the number of arguments supplied do not meet the requirements of the function Max. The function is defined to be Max ( x, y, ...)."
Is it because one of the fields is a formula date?
[date entered] formula date
[first assessment complete] date
[finance review complete] date
[final review complete date] date/time;
- QuickBaseCoachDQrew CaptainTry this
var date MaxDate = Max([date entered], [first assessment complete], [finance review complete], ToDate([final review complete date]));
WeekDaySub(today(), $MaxDate) - NoreenJusticeQrew TraineeBingo! ToDate to convert the date/time field worked. Many thanks!
- QuickBaseCoachDQrew Captain:) and I manged to type that on an iPhone screen.