dgriffis1231
Registered User.
- Local time
- Today, 17:58
- Joined
- Oct 9, 2013
- Messages
- 25
I have entered the function below in the vba module:
Public Function ParseText()
On Error Resume Next
Dim var As Variant
var = Split(TextIn, " ", -1)
ParseText = var(X)
End Function
but when I try to execute: ParseText([Expression],1) It replies "Undefined fuction "ParseText' in expression". I apologize if there is a simple solution to this question. I am new to VBA and creating functions.
Thank-you,
dgriffis
Public Function ParseText()
On Error Resume Next
Dim var As Variant
var = Split(TextIn, " ", -1)
ParseText = var(X)
End Function
but when I try to execute: ParseText([Expression],1) It replies "Undefined fuction "ParseText' in expression". I apologize if there is a simple solution to this question. I am new to VBA and creating functions.
Thank-you,
dgriffis