I've seen a few things around for something similar, but I'm starting to wonder if this is possible...
I formula that finds the last filled cell in range "A". That cell contains the following text "DEV-19-1". I need to increment the last digit (will eventually be 2 digits), but ignore the first 7 characters. I was seeing a lot about using the left/mid/right commands but I don't think that will do what I need it to. Here's the current formula:
Any thoughts or am I going about this all wrong?
*quick update, I will need to retain those first 7 characters in the userform, so the form would return DEV-19-2
I formula that finds the last filled cell in range "A". That cell contains the following text "DEV-19-1". I need to increment the last digit (will eventually be 2 digits), but ignore the first 7 characters. I was seeing a lot about using the left/mid/right commands but I don't think that will do what I need it to. Here's the current formula:
HTML:
TextBox1.Value = Sheets("Log").Range("A:A").End(xlDown).Value + 1
Any thoughts or am I going about this all wrong?
*quick update, I will need to retain those first 7 characters in the userform, so the form would return DEV-19-2
Last edited: