Question : If first character in string is zero, remove it

What code could I use to see if the variable strTempID begins with a zero, and if so, remove that character?

Answer : If first character in string is zero, remove it

iif(left(s,1)="0",mid(s,2),s)
Random Solutions  
 
programming4us programming4us