Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a better way to count the number of words in a string than:
intWords = 1 For i = 1 To Len(strIssuerName) If Mid(strIssuerName, i, 1) = " " Then intWords = intWords + 1 Next i ? This obviously isn't perfect since if there were two spaces in a row it would count an extra word... Also, is there an easy way to pick off the last two words in a string? I'm currently using ExtractElement from one of J Walkenbach's books. Thanks. Dave |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
counting function but not double counting duplicates | Excel Worksheet Functions | |||
Counting | Excel Discussion (Misc queries) | |||
Counting | Excel Discussion (Misc queries) | |||
Counting rows, then counting values. | Excel Discussion (Misc queries) | |||
Counting names in a column but counting duplicate names once | Excel Discussion (Misc queries) |