Se você quiser usar os dados de validação para criar uma lista, é impossível, você receberá a mensagem de erro: Você não pode usar operadores de referência (como uniões, interseções e intervalos) ou constantes de matriz para critérios de formatação condicional.
Por isso, sugiro que você tente usar o código como uma solução alternativa para ajudar a resolver esse problema.
Sub SetDataValidation() '
Dim WS As Worksheet
Set WS = Worksheets("Sheet1")
Dim rng As Range
'get range of named range
Set rng = WS.Range("NUMBER")
Dim ARR As Variant
ReDim ARR(1 To 1) As Variant
'add cell value from named range to an array
For i = 1 To rng.Cells.Count
ARR(UBound(ARR)) = rng.Cells(i).Value
ReDim Preserve ARR(1 To UBound(ARR) + 1) As Variant
Next i
'add your predefined value to the array
ARR(UBound(ARR)) = 17
'set validation for B1 with the combined array
With WS.Range("B1").Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, Formula1:=Join(ARR, ",")
End With
End Sub
Na minha amostra, eu nomeei o intervalo como NUMBER e obtive o resultado: