How do I use "Inception Date" and "Expiry Date" in a report formula
I need to use the "Inception Date" and "Expiry Date" fields in a report formula but cannot see how to do it. I have tried the following:
[Record.InceptionDate]
[InceptionDate]
[InceptionDate_Value]
[InceptionDate_DateValue]
[InceptionDate_Cover]
[InceptionDate_Result]
I am initially trying this with just the Inception date but would eventually like to incorporate it into an if statement.
"Record Inception Date" works when not in a formula.
Cheers.
Mark
-
Hi Mark,
This is due to change in the next major release of SchemeServe, development has started. In addition to the current functions:
- Row.GetValue and Row.GetString (both return string)
- Row.GetDecimal and Row.GetNumber (both return decimal)
...there is a new one on the way:
- Row.GetDate
You will be able to use this as follows:
IF(Row.GetDate("Inception") < NOW, "In the past", "Future date")....where "Inception" is the name of another column.
Best wishes,
Adam
Please sign in to leave a comment.
Comments
4 comments