Good morning! I'm trying to figure out why this seemingly simple code gives me a "Type mismatch" error.
This works:
This does NOT:
What am I doing wrong?
This works:
VBA Code:
Range("Load!G1").Value = "'" & [Text(Now(), "M/D" & " at " & "H:MM AM/PM")]
This does NOT:
VBA Code:
Range("Load!G1").Value = "'" & [Text(Now(), "H:MM AM/PM" & " on " & "M/D")]
What am I doing wrong?