Data are captured from Google Form and the first column is the Timestamp, I want to query it and only show all unique date for further use.
Formula
=UNIQUE(QUERY(A2:A, "SELECT A format A 'dd-mmm-yyyy'", 1)
only the first record cannot be formatted, is it a bug or something wrong to my formula?
Remove the header argument '1'.
Query should look likes this:
=unique(QUERY(A2:A, "SELECT A format A 'dd-mmm-yyyy'"))
Here is working result: