Name Manager

utant04

New Member
Joined
Aug 30, 2017
Messages
1
Hi All,

I have a small VBA macro that I want to use to update a names range for a combobox on a userform

However when I run the code the name range becomes blank. Looking a the Name manager it is working as the Refer To field has the correct range in, although the Value field also shows the same as the Refer To Field instead of the actual names in the cells.

My code is:
Dim EmptyRow As Long
Dim NewPerson As String
NewPerson = InputBox("Enter New Name.", "New Person")
EmptyRow = ActiveWorkbook.Worksheets("Sheet1").Range("A1").End(xlDown).Offset(1, 0).Row
Cells(EmptyRow, 1).Value = NewPerson
ActiveWorkbook.Names.Add Name:="Models", RefersTo:="Sheet1!$A$1:$A$" & EmptyRow

End Sub


Any help would be most welcome.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You could just do this once to create a dynamic range:

Code:
  ActiveSheet.Names.Add _
      Name:="Models", _
      RefersTo:="=Sheet1!$A$1:INDEX(Sheet1!$A:$A, MATCH(REPT(""z"",255), Sheet1!$A:$A))"
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,184
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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