Find Column Header "location" and then Insert a Column with Column Header "Radius"

mermaidGurl

New Member
Joined
Sep 12, 2017
Messages
5
Hi all,

I'm just learning VBA, so I'm struggling with finding the column header "location" and then inserting a column to the right with a column header "radius." I would like to make this so that it loops through all of the worksheets in the workbook.

1-- Function loops through all worksheets in Workbook
2--- find column header
3-- create new column to the right
4-- Name said column
5-- Msg box that shows whether successful not successful

:confused::confused::confused:

Any help would be greatly appreciated!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Code:
Public Sub InsertRadiusColumn()

Dim thisWorksheet As Worksheet
Dim locationColumn As Variant
Dim addedCount As Long

addedCount = 0

For Each thisWorksheet In Worksheets
    locationColumn = Application.Match("location", thisWorksheet.Rows(1), 0)
    If Not IsError(locationColumn) Then
        If thisWorksheet.Cells(1, locationColumn + 1).Value <> "radius" Then
            thisWorksheet.Columns(locationColumn + 1).Insert xlShiftToRight
            thisWorksheet.Cells(1, locationColumn + 1).Value = "radius"
            addedCount = addedCount + 1
        End If
    End If
Next thisWorksheet

If addedCount > 0 Then
    MsgBox "# worksheets with added ""radius"" column: " & CStr(addedCount), vbInformation + vbOKOnly, "Insert Radius Column"
End If

End Sub

WBD
 
Upvote 0
Hi & welcome to the board
Assuming your headers are in row 1 try
Code:
Sub Addcol()
'mermaidGurl 12/9

    Dim Ws As Worksheet
    Dim NewC As Range
    
        For Each Ws In Worksheets
            Set NewC = Ws.Rows([COLOR=#ff0000]1[/COLOR]).Find(What:="Location", After:=Range("[COLOR=#ff0000]A1[/COLOR]"), LookIn:=xlFormulas, _
                LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                MatchCase:=False, SearchFormat:=False)
            If Not NewC Is Nothing Then
                NewC.Offset(, 1).EntireColumn.Insert
                NewC.Offset(, 1).Value = "Radius"
            End If
            Set NewC = Nothing
        Next Ws
    MsgBox "Done"
End Sub
If not row 1 change the 2 bits in red to suit
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,231
Messages
6,170,884
Members
452,364
Latest member
springate

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