Named Ranges - Non Continuous Cells

xl_psychic

Active Member
Joined
Jan 4, 2004
Messages
359
Hi Guys,

A quick one for you all.

I have entries in 3 cells, viz: D6,D7 and G13. I want all of the three to be included in a named range which I will be using as a drop down validation on another sheet.

Can this be done.
 

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"
Insert the following code as module into your workbook:

Rich (BB code):
Option Explicit

Function ArrayUnion(ParamArray Arg() As Variant) As Variant
    ' Code: Juan Pablo González
    ' Spec: Aladin Akyurek
    ' May 4, 2003
    ' Ref: http://makeashorterlink.com/?P20022174
    ' Mod: Nov 3, 2003, to reduce number of ReDim Preserve calls.
    Dim TempUnion() As Variant
    Dim i As Long, Itm As Variant, Ctr As Long
    ReDim TempUnion(1 To UBound(Arg) - LBound(Arg) + 1) As Variant
    For i = LBound(Arg) To UBound(Arg)
        Arg(i) = Arg(i)
        If IsArray(Arg(i)) Then
            For Each Itm In Arg(i)
                Ctr = Ctr + 1
                If Ctr > UBound(TempUnion) Then
                    ReDim Preserve TempUnion(1 To UBound(TempUnion) * 2) As Variant
                End If
                'ReDim Preserve TempUnion(1 To Ctr) As Variant
                TempUnion(Ctr) = Itm
            Next Itm
        Else
            Ctr = Ctr + 1
            If Ctr > UBound(TempUnion) Then
                ReDim Preserve TempUnion(1 To UBound(TempUnion) * 2) As Variant
            End If
            'ReDim Preserve TempUnion(1 To Ctr) As Variant
            TempUnion(Ctr) = Arg(i)
        End If
    Next i
    If Ctr< UBound(TempUnion) Then
        ReDim Preserve TempUnion(1 To Ctr) As Variant
    End If
    ArrayUnion = TempUnion
End Function

Insert a new worksheet and name it Admin...



Let the values in D6, D7, and G3 on Sheet1 be: Don, Jim, and Damon.

Admin
Book4
ABCD
13
2Don
3Jim
4Damon
5 
6 
Admin


Activate Insert|Name|Define.
Enter List as name in the Names in Workbook box.
Enter the following in the Refers to box:

=arrayunion(Sheet1!$D$6:$D$7,Sheet1!$G$13)

Click OK.

In A1 on Admin enter:

=COUNTA(List)

In A2 enter & copy down:

=IF(ROW()-ROW($A$2)+1<=$A$1,INDEX(List,ROW()-ROW($A$2)+1),"")

Activate Insert|Name|Define.
Enter SList in the Names in Workbook box.
Enter the following in the Refers to box:

=Admin!$A$2:INDEX(Admin!$A:$A,MATCH("*",Admin!$A:$A,-1))

Click OK.

Now you can use SList as source in any appropriate cell in your workbook you want to data validate.
 
Upvote 0
I amy have missed something, Why can't you Select the cells D6,D7 and G13 while holding down the CNTRL Key and then give it a Name?
 
Upvote 0
Chas17, sorry, didn't clarify well enough.

Aladin, thanks.
 
Upvote 0
I see, works to name range but can not be used in Data Validation as Source for List.

Thanks,
Chas
 
Upvote 0
The complexity of this code Eludes me, i.e. with only three cells, why not on Admin sheet:
A2 =Sheet1!D6
A3 =Sheet1!D7
A4 =Sheet1!G13

Name the range A2:A4 on Admin and use it to validate?

Thanks,
Chas
 
Upvote 0

Forum statistics

Threads
1,214,391
Messages
6,119,239
Members
448,879
Latest member
VanGirl

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