I have this code
ActiveCell.Value = Left(ActiveCell.Text, InStr(ActiveCell.Text, " "
- 1)
that allows me to search the string from the left until you find a blank " ", but how would i specify that i want to search only until the second blank or 3rd etc, Thanks!
ActiveCell.Value = Left(ActiveCell.Text, InStr(ActiveCell.Text, " "
that allows me to search the string from the left until you find a blank " ", but how would i specify that i want to search only until the second blank or 3rd etc, Thanks!