[COLOR=rgba(0, 0, 0, 0.9)]Hey Excel Guru's -Looking for a little help with VBA code. I'm generating a requisition number on a form and each time I save the file I need excel to generate the next number in line. The below code partially works, but when I get to a certain number it keeps increasing the number of digits...Range("H4").Value = Left(Range("H4").Value, 4) & Mid(Range("H4").Value, 4, 4) + 1For example, I would want the requisition number to go in sequence: 05-1000, 05-1001, 05-1002 and so on. But, issue occurs and it jumps from 05-1000 to 05-11001 and adds a digitAny tips or pointers.Thank You[/COLOR]