Instead of ‘today’ I want to use the first day of this quarter. In my case, 1 Jan 2026.
I can calculate 1 Jan 2026 using a JavaScript column, however this JS column available as an option to replace ‘today’.
I don’t really mind how I achieve this, but I want to filter rows that are before and after the start of the current quarter. There is no other col in my data that indicates which date this is.
Javascript always returns a text string type. You will never get a date type returned from a javascript column. If you want to be able to filter by a date, you will either need a basic date column in the same table or the user table, or a math column to dynamically calculate the date from an existing date, such as now/today.
thanks everyone, I ended up needing to transform some of the data before adding rows to Glide.
In the process I used Google App Script to add a current/previous column to the csv before it gets to Glide which negates the need for calculations in Glide in my current set up