Error 1004 Object Error When Executing Names.Add from Inside a Function

Eldrod

Board Regular
Joined
Mar 11, 2010
Messages
76
Hi, I'm trying to run a function to select some data, write it to the calling cell's address and add a named range to encompass that returned data. It's working as expected until it hits the code to create the named range. I have tried adding this range name from the function and tried having the function call a sub to do it but both scenarios fail. I thought I saw a topic a long time ago saying Named Ranges can't be added from a function, but only a Sub but I have not been able to find it again. My results would seem to validate that. Does anyone know for sure if that is an Excel VBA restriction?
Here's the function and the called sub. (BTW, this works if I just run a Sub by itself, but I need it completed in the function process). Any ideas?

VBA Code:
Function BuildDynamicDropdownListRange(MatchObj As String, SearchRange As Range, Position As Integer, NRName As String) As Variant
'Purpose is to read an Array of input data and return an array of items that match in the nth column of the list and create a named range for it.
Dim InArray(), TempArray(), OutArray(), NRParts() As Variant
Dim OutRange As Range
Dim InRows, OutRows As Integer
Dim x, y, OutIdx As Integer
Dim MatchFound As Boolean
Dim NewRef As String

InArray = SearchRange
InRows = UBound(InArray)
ReDim TempArray(1 To InRows)
OutIdx = 0
'Process List
For x = 1 To InRows
    'Look for the match
    If InArray(x, 1) = MatchObj Then
        OutIdx = OutIdx + 1
        TempArray(OutIdx) = InArray(x, Position)
    End If
Next x

'Write the data
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
OutArray = ResetArray(TempArray)
NRParts = ParseNR(ActiveCell.Address)
NewRef = NRParts(3) & ":" & NRParts(7) & NRParts(8) + OutIdx - 1

BuildDynamicDropdownListRange = Application.Transpose(OutArray())

Call MakeNR(NRName, NRParts(1), NewRef)

'With NRParts(1)
''With Sheets("WattTime Data")
'   '.Range("S2:S2") =
'    .Range(NewRef) = OutArray
'    On Error Resume Next   ' an error indicates the NR does not exist
'   Names.Add Name:=NRName, MacroType:=1, RefersTo:=Worksheets(NRParts(1)).Range(NewRef)
'End With
'set the named range

'OutIdx = OutIdx - 1

'ReDim Preserve OutArray(OutIdx)

On Error GoTo 0
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic

Erase InArray, TempArray, OutArray
End Function
Sub MakeNR(ByVal NRName As String, ByVal NRSheet As String, ByVal NRAddress As String)
Debug.Print "Sub MakeNR Called at ", Time()
On Error GoTo Handle:
'On Error Resume Next
    Names.Add Name:=NRName, MacroType:=1, RefersTo:=Worksheets(NRSheet).Range(NRAddress)
'End With
Debug.Print "Sub MakeNR Exited at ", Time()
Exit Sub
Handle:
'Debug.Print Err, Err.Description, Err.Source, Err.HelpContext, Err.HelpFile
Debug.Print "Sub MakeNR Exited Handle at ", Time()
End Sub
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
And remember that those limitations are inherited by any routine called from a Function.
My suggestion is that you rework the Function so that it returns the addresses of the "names" to create and do that job within the calling routine

Bye
 
Upvote 0
It's amazing what you can actually do with a UDF, which officially you can't ;)
Try replacing this
VBA Code:
Call MakeNR(NRName, NRParts(1), NewRef)
with
VBA Code:
Evaluate ("MakeNR(" & Chr(34) & NRName & Chr(34) & "," & Chr(34) & NRParts(1) & Chr(34) & "," & Chr(34) & NewRef & Chr(34) & ")")
 
Upvote 0
Solution
It's amazing what you can actually do with a UDF, which officially you can't ;)
Try replacing this
VBA Code:
Call MakeNR(NRName, NRParts(1), NewRef)
with
VBA Code:
Evaluate ("MakeNR(" & Chr(34) & NRName & Chr(34) & "," & Chr(34) & NRParts(1) & Chr(34) & "," & Chr(34) & NewRef & Chr(34) & ")")
Thanks, Fluff! That works! I was only halfway through rewriting the function as a subroutine, so this was timely!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,572
Messages
6,125,605
Members
449,238
Latest member
wcbyers

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