Answers for "vba range to string"

VBA
1

vba date to string

Dim myDate As Date, strDate As String
myDate = CDate("2021-01-28")
strDate = Format(myDate, "YYYY-MM-DD")
Posted by: Guest on February-05-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language