Naming cell with a mix of variable and constant

DroZ3

New Member
Joined
Mar 22, 2018
Messages
22
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

I am trying to "name a cell" using a name which made of both a variable and a constant.

Variable is the name of the sheet :
Dim strCurrentAppliName As String
strCurrentAppliName = ActiveSheet.Name
' Here the name of the sheet is Appli_1 so strCurrentAppliName is = to Appli_1

Line of code :
ActiveWorkbook.Names.Add Name:="strCurrentAppliName + & AdminFees", RefersToR1C1:="='DATA Backup'!R121C4"

So if the line of code was good, cell R121C4 would be renamed "Appli_1AdminFees"

But the code bugs, can I get suggestions to make it work.

Note : I tried ActiveWorkbook.Names.Add Name:="strCurrentAppliName + & "AdminFees", RefersToR1C1:="='DATA Backup'!R121C4"
It does not work either.

Thanks for the help.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
It is important to note that everything between double-quotes is literal text. All variables and operators must be OUTSIDE of the double-quotes, i.e.
Excel Formula:
ActiveWorkbook.Names.Add Name:=strCurrentAppliName & "AdminFees", RefersToR1C1:="='DATA Backup'!R121C4"
 
Upvote 0
Solution

Forum statistics

Threads
1,214,613
Messages
6,120,515
Members
448,968
Latest member
Ajax40

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