Please help.
I am trying to make UDFs and save as an add-in. When Excel trys to open the add-in I get:
Run-time error '91' Object variable or With block variable not set
Here is the code I am using in VBA:
Function trythis(enterthis As Double) As Double
trythis = enterthis +1
End Function
Not sure what is wrong. It seems like I'm not declareing properly.
Thanks in advance
I am trying to make UDFs and save as an add-in. When Excel trys to open the add-in I get:
Run-time error '91' Object variable or With block variable not set
Here is the code I am using in VBA:
Function trythis(enterthis As Double) As Double
trythis = enterthis +1
End Function
Not sure what is wrong. It seems like I'm not declareing properly.
Thanks in advance