VBA Adding a row to a named range

davebliz

New Member
Joined
Feb 14, 2015
Messages
5
I have a list of names in a named range "Player_Names"

When I do a Vlookup into this named range, if I do not find the name, I want to add the name to the end of the list and modify the named range to include the new row.

I'm new to VBA and would appreciate any help.

Thanks.
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
This will expand the named range "Player_Names" by one row.

Code:
[color=darkblue]Sub[/color] Player_Names_Plus_One()
    
    ThisWorkbook.Names.Add Name:="Player_Names", _
        RefersTo:=Range("Player_Names").Resize(Range("Player_Names").Rows.Count + 1)
        
[color=darkblue]End[/color] [color=darkblue]Sub[/color]
 
Upvote 0

Forum statistics

Threads
1,215,330
Messages
6,124,307
Members
449,151
Latest member
JOOJ

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