I need to use Get Rows Where to get the row with value that is just below certain value.
In other words:
I have a Date A
I have a table with dates. I need to get the row where the date is the latest, but less than Date A
Example:
I have a date when person died.
I have table with all event when somebody logged in into his account. There are dates before and after his death.
I need to find the latest date he logged in before his death.
Something along the lines of:
lastSelfLogin = dt<<Get Rows Where(:loginDate < deathDate & /*here goes condition that this date needs to be the last*/);
Any ideas?
Thanks!