I want to format column “I” on my spreadsheet in vbShortDate format, but keep getting various error messages. The code should be something like the following (I think):
With ws
With .Range(“I1”)
.EntireColumn.Format vbShortDate ‘ – Not correct!!
End With
End With
Would appreciate guidance on what the correct text should be – I do not have my Excel coding text books handy, and the Help file has not helped!
TIA
Kiwi44