Hello All,
I’m using a table that has five date fields per record. I need to create a formula that finds the greatest date that is < = CurrentDate. I tried this formula (below) but I discovered it returns a Null value if any of the five date fields are Null.
I suspect an Array is in order here. But how do I do that?
Also, In the above formula I tried to add the “< = CurrentDate” at the end, but it returned a “True” or “False” value.
I obviously don’t know what I’m doing here. Any/all help would be greatly appreciated!!!
- t
I’m using a table that has five date fields per record. I need to create a formula that finds the greatest date that is < = CurrentDate. I tried this formula (below) but I discovered it returns a Null value if any of the five date fields are Null.
Code:
Maximum([{Table.Date1},{ Table.Date2},{ Table.Date3},
{ Table.Date4},{ Table.Date5}])
I suspect an Array is in order here. But how do I do that?
Also, In the above formula I tried to add the “< = CurrentDate” at the end, but it returned a “True” or “False” value.
I obviously don’t know what I’m doing here. Any/all help would be greatly appreciated!!!
- t