I have an array of dates that I am transposing to a range. However they are not transposed as dates, they are transposed as strings.
Dim termdates As Variant
termdates = Array(DateSerial(2020,6,20), DateSerial(2021,6,20), DateSerial(2022,6,20))
Range("C1:C3").Formula = Application.Transpose(termdates)
How do I convert range("C1:C3")
to dates? Alternatively is there a better way to copy the dates from termdates
that does not require an additional conversion?
Thank you in advance