QP School
QP School
>
Tutorials
>
Excel VBA Tutorials
> How to format an entire column as number without thousand separator in Excel VBA
Full Version:
How to format an entire column as number without thousand separator in Excel VBA
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
Qomplainerz
04-13-2023, 12:26 PM
Assumed you have created a module and a subroutine already, write the following code:
Range("A:A").Select
Selection.NumberFormat = "0"
QP School
>
Tutorials
>
Excel VBA Tutorials
> How to format an entire column as number without thousand separator in Excel VBA