ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Dynamic Cell Nameing (https://www.excelbanter.com/excel-programming/341484-dynamic-cell-nameing.html)

Paul

Dynamic Cell Nameing
 
Is there any way to dynamically name cells in order to create unique
indifiable cells. I specifically want to name cells based on joining 2
idenifiers found in a worksheet (i.e. I want cell H1 to be named EBI_130,
cell H2 to be name EBI_131, etc.)

I haven't figured a way around the (... names.add name:= ...) configuration
that is static.

Tom Ogilvy

Dynamic Cell Nameing
 
Dim s1 as String, lng2 as Long
S1 = "EBI_"
Lng2 = 129

for i = 1 to 2
Range("H1").Offset(i-1,0).Name = S1 & (Lng2 + i)
Next

--
Rgards,
Tom Ogilvy

"Paul" wrote in message
...
Is there any way to dynamically name cells in order to create unique
indifiable cells. I specifically want to name cells based on joining 2
idenifiers found in a worksheet (i.e. I want cell H1 to be named EBI_130,
cell H2 to be name EBI_131, etc.)

I haven't figured a way around the (... names.add name:= ...)

configuration
that is static.




Paul

Dynamic Cell Nameing
 
Nicely Done. Thanks

"Tom Ogilvy" wrote:

Dim s1 as String, lng2 as Long
S1 = "EBI_"
Lng2 = 129

for i = 1 to 2
Range("H1").Offset(i-1,0).Name = S1 & (Lng2 + i)
Next

--
Rgards,
Tom Ogilvy

"Paul" wrote in message
...
Is there any way to dynamically name cells in order to create unique
indifiable cells. I specifically want to name cells based on joining 2
idenifiers found in a worksheet (i.e. I want cell H1 to be named EBI_130,
cell H2 to be name EBI_131, etc.)

I haven't figured a way around the (... names.add name:= ...)

configuration
that is static.






All times are GMT +1. The time now is 06:51 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com