Hi,
You can use ToDate() and SubtractDuration() function to find the previous records.
Say, You want to find the previous 100 days records from a file.
$ Filter data by ToDate(Inspection_Date,'MM/dd/yyyy') > SubtractDuration(CurrentTime(),'P100D');
Hope this will work.
Thank You