Function Eval(Ref)
Eval = Evaluate(CStr(Ref))
End Function
Also is it possible to add characters IIII together to get 4?
jmiskey said:Try this modification to Andrew's code:
Code:Function Eval(Ref) If Len(Ref) > 0 Then Eval = Evaluate(CStr(Ref)) End Function