Search code examples
dategoogle-sheetsfilterimportnumber-formatting

How to apply Date format to the Imported Range


I have a question, how to apply date format to the results comming from query(Importrange) formula.

My formula "=filter({A:A,row(A:A)},isnumber(A:A))" in B1 can't see these dates. Spreadsheet only can see this as a text, not number.

enter image description here

Spreadsheet with example.

Do you have any ideas?


Solution

  • use:

    =FILTER({A:A, ROW(A:A)}, ISNUMBER(A:A*1))
    

    enter image description here