shorten codes in VBA

SilentRomance

New Member
Joined
Aug 4, 2021
Messages
46
Office Version
  1. 2016
  2. 2010
Platform
  1. Windows
hello guys how do I shorten this codes?

ws.Columns("A").ColumnWidth = 8.43
ws.Columns("A").HorizontalAlignment = xlCenter
ws.Columns("A").NumberFormat = "_(#,##0.00_);_(#,##0.00);_(""_""??_);_(@_)"
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You could use:

Code:
With ws.Columns("A")
   .ColumnWidth = 8.43
   .HorizontalAlignment = xlCenter
   .NumberFormat = "_(#,##0.00_);_(#,##0.00);_(""_""??_);_(@_)"
End With
 
Upvote 0
I do not know what kind of shortening you expect.
VBA Code:
With ws.Columns("A")
    .ColumnWidth = 8.43
    .HorizontalAlignment = xlCenter
    .NumberFormat = "_(#,##0.00_);_(#,##0.00);_(""_""??_);_(@_)"
End With
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,582
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top