vba to refer to a sheet name based on a cell's content

cjcass

Well-known Member
Joined
Oct 27, 2011
Messages
683
Office Version
  1. 2016
Platform
  1. Windows
Hi,
I'm looking for some vba that will enable me to refer to a wksheet name based on the contents of a cell.
My existing code is as follows:

Sheet15.Select
Range("A7:CU10000").Select
Selection.Copy


Sheet19.Select


Range("A7").Select

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A7").Select

I'm looking to replace the code 'Sheet19.Select' in the middle with the name of a wksheet that will be typed into cell B4. So, as an example, if I want the data to be pasted into a wksheet named '23' (the tab name), I will type the number '23' into B4 and then run the macro.
Hope this makes sense and you can help, many thanks.
 
Hi,
Cell B4 will have a number input into it, eg. 23, and there will be a sheet with that same number as it's tab name. So, if I was recording a macro and selected that sheet the code would read Sheets("23").Select
 
Upvote 0

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi,
Cell B4 will have a number input into it, eg. 23, and there will be a sheet with that same number as it's tab name. So, if I was recording a macro and selected that sheet the code would read Sheets("23").Select

Ok, that is how I interpreted your original post and that is the assumption used for the code in Post # 7. The 'sh' variable would equate to 'Sheets("23")' if you put "23" in cell B4. Anywhere the 'sh' appears is the same as Sheets("23"). I eliminated the Select statements and used direct coding so that the flicker and flash of the screen updating would go away. The code in post #7 should work as you wanted.
 
Upvote 0
It's still using the sheet's code name as opposed to it's string name (tab name) and this is your assumption in #7
 
Upvote 0
It's still using the sheet's code name as opposed to it's string name (tab name) and this is your assumption in #7

I am not following you. This
Code:
Set sh = Sheets(Sheets("Data").Range("B4").Value)
Should yield a value of 'Sheets("23")' if B4 contains '23'. You can verify that value with a message box place immediately after the variable is initialized.
Code:
MsgBox "Sheets(" & sh.Name & ")"
If it Shows 'Sheets("23")' it should be correct, but if it shows 'Sheets(Sheet23)' Then we have a communication problem.
 
Upvote 0
It's definitely a communication problem.
Your message box returns.... Sheets(23)
I'm having to type 21 (the sheet code name) into cell B4 in order for the data to be copied to 23 (the visible sheet/tab name in the wksheet).
If you were to see my VBA window you'd see the sheet is detailed as follows... Sheet21 (23)
I need to be able to type 23 in B4 and the data to go to 23 (tab name)
:)
 
Upvote 0
It appears that the value in B4 is Numeric rather than string, so this should fix it if you modify the code as follows.
Code:
Set sh = Sheets([COLOR=#ff0000]CStr([/COLOR]Sheets("Data").Range("B4").Value)[COLOR=#ff0000])[/COLOR]

Just for clarification, it was not using the code name, it was using the sheet index (23rd sheet left to right as they appear on the sheet name tabs.) That was what had me confused, because I didn't know how it could reconfigure the code structure to use the Excel code name.
 
Last edited:
Upvote 0
Yeehaa!! that works...
Brilliant, thanks very much for your time and perseverance with this :)
 
Upvote 0

Forum statistics

Threads
1,217,385
Messages
6,136,277
Members
450,001
Latest member
KWeekley08

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