dpaton05
Well-known Member
- Joined
- Aug 14, 2018
- Messages
- 2,362
- Office Version
- 365
- 2016
- Platform
- Windows
I want to format 3 cells as currency, what's wrong with this code?
Code:
With Worksheets(Combo)
.Columns("K5").NumberFormat = "$#,##0.00"
.Columns("L5").NumberFormat = "$#,##0.00"
.Columns("M5").NumberFormat = "$#,##0.00"
End With[CODE]