Hi guys--
I have some data going into my access database from excel that contains zip codes--my issue is that for states with a leading zero, this sometimes gets cut off.
Ex. zip code 1111 needs to be 01111.
Is there a way to check the length of the text and add a leading zero if it's only 4? I know in Excel it would be something like =if(len(A1)<5,0&A1,A1), but I'm pretty new to access and I'm not sure where to start with this.
Thanks in advance!