Hey everyone,
I have a Query Result column that returns dates in ISO format (2026-04-24T13:00:00). The problem is that Glide reads it as text, not as a date — so I can’t use date filters like “is before”, “is after”, or “is within” on it.
Things I’ve tried that didn’t work:
-
Format Date column → always outputs text, useless for filtering
-
Math column pointing to the Query Result → still shows as text in If->Then->Else, no date operators available
The only workaround I found was a JavaScript column that compares the date manually using new Date(p1), which works but gives me a text output, not a real date column.
My question: Is there a native way in Glide to convert a text column into a proper date that Glide recognizes as a date type — so I can use it in filters, conditions, and If->Then->Else with date operators?
Any help appreciated!

