Help with trimming text in column with consistent header name but inconsistent column location

kalamazoo

New Member
Joined
Aug 19, 2011
Messages
20
Hello all,

I am trying to trim text that is in a column with a consistent header name in the worksheets but will be in different column locations (for instance sometimes in column AY and sometimes in column AZ). This is the macro I recorded where I searched for the column header name, inserted a column next to it then did text to columns to separate them at the point I wanted them to separate at. Is there any way to get this to where it would work even when the column with that column name is in a different spot?

Thanks,

Jordan

Sub Trim_Text()
'
' Trim_Date Macro
'
' Keyboard Shortcut: Ctrl+Shift+T
'
Selection.Find(What:="ColumnHeaderName", After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:= _
xlNext, MatchCase:=False, SearchFormat:=False).Activate
Columns("AZ:AZ").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Columns("AY:AY").Select
Selection.TextToColumns Destination:=Range("AY1"), DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(9, 1)), TrailingMinusNumbers:=True
End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
This will look in Row 1 on all Sheets

Code:
Sub FindCol()
    Dim ColName As String
    Dim sh As Worksheet
    Dim fnd As Range
    
    ColName = "theCol"
    
    For Each sh In Worksheets
        Set fnd = sh.Rows(1).Find(ColName, , , xlWhole)
        If Not fnd Is Nothing Then
            'do your thing here
        End If
    Next sh
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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