Scot Sunnergren
10/10/2019, 1:31 PMscottvonduhn
10/10/2019, 1:41 PM{today} - {createddate}
which returns the number of days elapsed as a floating point value, then filter on results less than or equal to
value 1
scottvonduhn
10/10/2019, 1:44 PMbetween
0.125
and 1.125
would return everything that was created more than 3 hours and less than 27 hours ago.scottvonduhn
10/10/2019, 1:54 PMto_date('2019-10-10 19:00', 'YYYY-MM-DD HH24:MI') - {createddate}
, which calculates the time elapsed from the Date Created until 10/10 7:00 pmScot Sunnergren
10/10/2019, 2:30 PMscottvonduhn
10/10/2019, 3:27 PMTO_CHAR
to convert {today} to a string: TO_CHAR({today})
The function takes an optional second parameter where you can specify an output format, otherwise it uses a default format.Scot Sunnergren
10/10/2019, 3:53 PM