vba add column before each date listed in row (nba schedule)

gtd526

Well-known Member
Joined
Jul 30, 2013
Messages
657
Office Version
  1. 2019
Platform
  1. Windows
Hello,
Want to add a column before each date listed in Row 3.
The last column is (EY), so there are many dates in Row 3.
Thanks

NBA.xlsm
ABCDEFGHIJKLMNOPQRST
1AWAYLALPHXATLWASBOSHOUCLEDETMINOKCNOSACDALPORPHIPHXDETDENNYK
2HOMEDENGSCHAINDNYKORLBKNMIATORCHIMEMUTASANLACMILLALCHAMEMATL
3DATE10/24/2310/25/2310/26/2310/27/23
Raw
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try this:
VBA Code:
Sub MyInsertColumns()

    Dim lc As Long
    Dim c As Long
    
    Application.ScreenUpdating = False
    
'   Find last column with data in row 3
    lc = Cells(3, Columns.Count).End(xlToLeft).Column
    
'   Loop through all columns backwards, up to column B
    For c = lc To 2 Step -1
'       See if entry is a valid date
        If IsDate(Cells(3, c)) Then
'           Insert column before
            Cells(3, c).EntireColumn.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
        End If
    Next c
    
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
Solution
Try this:
VBA Code:
Sub MyInsertColumns()

    Dim lc As Long
    Dim c As Long
   
    Application.ScreenUpdating = False
   
'   Find last column with data in row 3
    lc = Cells(3, Columns.Count).End(xlToLeft).Column
   
'   Loop through all columns backwards, up to column B
    For c = lc To 2 Step -1
'       See if entry is a valid date
        If IsDate(Cells(3, c)) Then
'           Insert column before
            Cells(3, c).EntireColumn.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
        End If
    Next c
   
    Application.ScreenUpdating = True
   
End Sub
Thank you.
 
Upvote 0

Forum statistics

Threads
1,215,108
Messages
6,123,128
Members
449,097
Latest member
mlckr

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