named range

orsm6

Active Member
Joined
Oct 3, 2012
Messages
496
Office Version
  1. 365
Platform
  1. Windows
Hi, i am trying to define a named range that excludes any blank cells. the named range though is across columns. the range is D11:IS11. I wanted to then use a DV list box to link to the named range.

i have found plenty of examples that will do this in a column, how can i do it in one row across columns?

TIA
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
If D11:IS11 only contain constants (no formulas)...

Range("D11:IS11").SpecialCells(xlConstants).Name = "NewNameForRange"
 
Upvote 0
hi Rick, thanks for your help.

when i paste your formula into a new named range it double quotes some of it.
i run into trouble when trying to create a data validation box called list. i get an error.

="Range(""c11:c11"").SpecialCells(xlConstants).Name = ""list"""

cheers.

also. this range contains names only. each cell has last name, first name over 2 lines...e.g.

last name,
first name
 
Last edited:
Upvote 0
my question was possibly misunderstood. i don't want to use a macro.

in cell B11 i want to create a drop down list. just like with a normal data validation list box.
the range though is D11:IS11
how can i get b11 to show all the names in that range, excluding the blank cells
 
Last edited:
Upvote 0
my question was possibly misunderstood. i don't want to use a macro.

in cell B11 i want to create a drop down list. just like with a normal data validation list box.
the range though is D11:IS11
how can i get b11 to show all the names in that range, excluding the blank cells

I do not believe you can do that (other than with a macro) with the version of Excel I use (XL2010), but perhaps the newer versions have a function (TEXTJOIN maybe) that can be used. You will have to wait for someone with a newer version of Excel to come along and respond.
 
Upvote 0
i appreciate your help. i will see if i can get your idea working in the meantime using VBA.

ta
 
Upvote 0
I have found a way to do it.

i created a named range called LIST: =SOP!$D$11:INDEX(SOP!$D11:$IS11,COUNTA(SOP!$D11:$IS11))
i then created a data validation list box using =LIST
i now have a list of names in B11 that are contained in range D11:IS11 and it excludes blank cells
 
Upvote 0

Forum statistics

Threads
1,213,543
Messages
6,114,237
Members
448,555
Latest member
RobertJones1986

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