Excel Table Reference Name Captured from Another Cell Value

Morshed_Dhaka

New Member
Joined
Dec 16, 2016
Messages
42
Hi Everyone, I am looking for a solution of complicated problem. Below is my problem details:
I have excel table with huge data. For example, my table starts & ends at Sheet1! $D$7:$R$2926 .
The Table is named as “Data1”. But I want to change the table name as “January” which name will be collected from another cell reference which is B1.
How I will able to do it ???
Advance Thanks for your support.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try this:
Code:
Sub Table_Name()
'Modified 6/22/18 11:08 PM EDT
ActiveSheet.ListObjects("Data1").Name = Range("B1").Value
End Sub
 
Upvote 0
If you only have one Table in the active sheet.
And you want to be changing it's name often.

Try this:

Code:
Sub Table_Name()
'Modified 6/22/18 11:39 PM EDT
ActiveSheet.ListObjects(1).Name = Range("B1").Value
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,636
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