I have a text string 'G123-13' that needs to be incremented by one. It's stored as a text string and I can get the value through DLOOKUP, and can see the value if I use the following:
grow_lic = DLookup("[Licence]", "FULLGROWER")
licence_mid = Mid(grow_lic, 2, 3)
But how do you increase the licence_mid value by one and then put the 'G' and '-13' back onto the text string?
Any help would be appreciated.
CementCarver