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
I'd appreciate some help!