The NumberFormat property represents the number format (expressed as a text string) of the Range object: statement changes the number format of column A to percent with two decimal places : Column « Excel « VBA / Excel / Access / Word
The NumberFormat property represents the number format (expressed as a text string) of the Range object: statement changes the number format of column A to percent with two decimal places
Sub numFormat()
Columns("A:A").NumberFormat = "0.00%" End Sub