Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to have this formatted data return empty given this is VLOOKUP + TEXT + QUERY in Google Sheets?

This is the formula, currently.
It outputs 12/30/1899, but it actually returns 0 and since TEXT() is forcing it into a data, this is how it shows.
How to have this ARRAYFORMULA() populate the values and empty when there is no date?

FORMULA

=IF(I4<>"","Factura (USD)",
  ({"Wire Transfer Date";
        arrayformula(IFNA(
            TEXT(
            VLOOKUP($J$10:$J900,
              query(Datasets!S3:U,"select S, U"),2,0),
            "mm/dd/yyyy")
         )
       )
    }
  )
)

Current Output, which should be empty instead

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

enter image description here

I’d appreciate some help!

>Solution :

try:

=IF(I4<>"", "Factura (USD)", {"Wire Transfer Date"; 
 ARRAYFORMULA(SUBSTITUTE(IFNA(TEXT(VLOOKUP($J$10:$J900, 
 QUERY(Datasets!S3:U, "select S,U"), 2, ), "mm/dd/yyyy")), "12/30/1899", ))})
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading