Change column name in a table

craig2525

Board Regular
Joined
Oct 30, 2018
Messages
57
Office Version
  1. 2016
Platform
  1. Windows
After much searching with no answers, I need some help. Not even sure this can be done. I need to change the Column names in a table based on cells. I would like to change Column 1 to match what is in cell A2, Column 3 to match cell C2 and so on. Is this possible?

Excel 4.png
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Are you sure we are dealing with a "TABLE"?
And why are we going with column A then Column 3?
And what does:
Your quote "and so on" mean"
There are several thousand columns on a sheet.

And if we are actually working with a "Table"
We need sheet name and Table name
 
Upvote 0
What if you scroll down slight does the table headings replace the column letters? You could also look at using freeze panes or split screens if you want to keep the dates in row two visible.

You cant change the column letters to your own text headings.
 
Upvote 0
You'd need code to do that (a simple loop will do), but I'm not sure why you want to? Your data layout doesn't really suit a table given that your even numbered columns all relate to the same thing (PM Hours), so unless you need to filter, I'd just hide the real column headers. Anyway, sample code would be:

VBA Code:
Sub renameCols()
   Dim ws As Worksheet
   Set ws = ActiveSheet
   Dim tb As ListObject
   Set tb = ws.ListObjects(1)
   
   Dim col As Long
   For col = 1 To tb.ListColumns.Count Step 2
      tb.ListColumns(col).Name = ws.Cells(2, col).Value
   Next col
End Sub
 
Upvote 0
It is a table. I need to make the Column name match the cell (which will change weekly). "And so on" means each day of the week I have listed (Friday to Friday). Table name is Table1.
 
Upvote 0
Sheet name is Sheet1.
Assuming that is the Tab name of the worksheet and this is the only formal table on that worksheet, give this modification a try with a copy of your workbook.

VBA Code:
Sub Rename_Cols()
  Dim tb As ListObject
  Dim col As Long
  
  Set tb = Sheets("Sheet1").ListObjects(1)
  For col = 1 To tb.ListColumns.Count Step 2
    With tb.ListColumns(col)
      .Name = Format(.Range.Cells(-1, 1).Value, "m/d/yyyy")
    End With
  Next col
End Sub
 
Upvote 0
Solution
You're welcome. (It is largely Rory's suggestion from post 4 altered to suit the changed table location from your initial picture :))
 
Upvote 0

Forum statistics

Threads
1,221,486
Messages
6,160,108
Members
451,619
Latest member
KunalGandhi

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