Skip to main content

We have created a generic inquiry which calculates the difference between the last user password change date and today() to get a number. This works.

We now want to use that number to filter the records.

e.g daysSincePWChange is greater than 0.

 

The filter works if we use EQUAL or STARTS WITH and a given number, which means the result is being treated as a string. 

What can we do to ensure the calculated results are treated as numbers?

 

Regards

 

Use one of the conversion formulas to change your count of days from a string to either Integer (whole number) or Decimal

 


See this post for more info: 

 


This is the best answer - the trick is to use the schema field which forces the evaluated result to the correct field type.


Reply