Use the Split Ubound function to get the number of words in your memo.
Dim strWords() As String
Dim iNumber As Integer
strWords = Split(YourMemoAsString, " ")
iNumber = UBound(strWords) + 1
iNumber is how many words there are in your memo.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.