Hello,
I am trying to use the instrinsic function "strLen" in a VBA application. But keep getting the error "Sub or Function" not defined. Is there a reference that I have to include to allow this feature to work.
Thanks,
Larry
Printable View
Hello,
I am trying to use the instrinsic function "strLen" in a VBA application. But keep getting the error "Sub or Function" not defined. Is there a reference that I have to include to allow this feature to work.
Thanks,
Larry
strLen is a C function. Use the Len() function instead.
Worked! Thanks alot.
Larry