VBA Code Help with Text align and All Borders

philb99

Active Member
Joined
Feb 3, 2014
Messages
385
Office Version
  1. 2010
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

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
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,214,798
Messages
6,121,635
Members
449,043
Latest member
farhansadik

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