VBA Code Help with Text align and All Borders

philb99

Active Member
Joined
Feb 3, 2014
Messages
410
Office Version
  1. 2013
Platform
  1. Windows
I have had some brilliant help in this forum with this code.

What I would like to try and add when creating the new Column A is to ensure any new text is set to "Top Align" and Create an "All Borders" around the New Cells in Column A

Sub EnterTeamName()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
With ws
.Columns(1).Insert
.Columns(1).Font.Name = "Arial"
.Columns(1).Font.Size = 8
.Range("A1") = "Team"
.Range("A2").Resize(ws.Cells(ws.Rows.Count, "B").End(xlUp).Row - 1) = .Name
End With
Next ws
End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
How about
Code:
Sub philb99()
Dim ws As Worksheet
   For Each ws In ActiveWorkbook.Worksheets
      With ws
         .Columns(1).Insert
         .Columns(1).Font.Name = "Arial"
         .Columns(1).Font.Size = 8
         With .Range("A1").Resize(ws.Cells(ws.Rows.Count, "B").End(xlUp).Row)
            .Value = .Parent.Name
            .VerticalAlignment = xlTop
            .Borders.Weight = xlThin
         End With
         .Range("A1") = "Team"
      End With
   Next ws
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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