assign variable
If there are 2 - as per the example, use InstrRev
--
HTH
RP
"Norman Jones" wrote in message
...
Hi Tim.
One way:
Sub Atester()
Dim sStr As String
Dim pos As Long
Dim i As Long
sStr = "CP - 163"
pos = InStr(sStr, "-")
i = Mid(sStr, pos + 1) + 1
MsgBox i
End Sub
---
Regards,
Norman
"Tim" wrote in message
...
If a cell in a sheet is "LL-CP-0163" how can i set a variable in a macro
equal to 0163 or the number part of that cell. also how can i set
another
variable equal to 0164 or the previous variable + 1
|