I have a value being sent to a label field. Example of value is 'A000000001'. When I hit a button, I need to insert the next interval, which would be 'A000000002', into a table. The problem I'm having is getting the next number to produce. If I trim the 'A' off the front and add 1 to the 000000001, the result is '2' instead of '000000002'. Any suggestions? I don't want to have to do a long formula to add so many zeroes depending on the number of digits, I'm hoping there's something simpler. Maybe a VB version of lpad?