continuing on my work with strings, i know how to select only a string until a certain character
ActiveCell.Value = Left(ActiveCell.Text, InStr(ActiveCell.Text, " "
- 1)
in this case a blank
but now how would i be able to still do that, but not start from all the way on the left, i want to skip the first character and then start from the 2nd character (or perhaps 3rd etc.) and then go until the blank, thanks!
ActiveCell.Value = Left(ActiveCell.Text, InStr(ActiveCell.Text, " "
in this case a blank
but now how would i be able to still do that, but not start from all the way on the left, i want to skip the first character and then start from the 2nd character (or perhaps 3rd etc.) and then go until the blank, thanks!