This query function is pulling the correct data, but for some reason its still not sorting the rows by date - any suggestions?
Copy of sheet: https://docs.google.com/spreadsheets/d/10LTLrb66F8t3jOPrvtuDs8wCrsSmNPcP953O_IWpjbM/edit?usp=sharing
=QUERY('Zapier Leads'!A2:AA, "SELECT A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, Z, AA, T, U, V, W, X, Y WHERE not A Matches 'selection8_address' order by 6 asc", 1)

You mentioned
The issue is that in your query formula at the
Mastertab you use=QUERY('Zapier Leads'!A2:AA, "....",1)This means that you consider the first row as a header.
As a result cell
F2is NOT formatted as Date.Please use the following formula where the issue is fixed.
In addition.
For your
Last7DaysLeadstab you can use this simplified formula.Notice how we use
order by Fin the first formula, whileorder by Col6in the second.You can check your sheet to see the formulas in action.