Custom Date Format in JSL Script (For Query Builder)
Overall Goal: Create a query in Query Builder that filters on a date time column only pulling data from the last 7 days of the current time. I am trying to use a custom expression in Query Builder to do this. Ideally it would just be the following in the custom expression filter but it results in no data pulled. t1.TimeCol >= format((Today() - InDays(7)), "m/d/y h:m:s")
It appears Query Builder ta...