G
Guest
I've tried using a lot of the suggestions posted here to add a zero to a
field if it contains only one digit. If it contains 9 it should be 09, if it
contains 25 its fine.
I know I'm close, but missing something. I've tried:
UPDATE PSoftDownload
SET Sect = "0" & Sect
WHERE Left(Sect,1) = "";
Thanks for your help -
field if it contains only one digit. If it contains 9 it should be 09, if it
contains 25 its fine.
I know I'm close, but missing something. I've tried:
UPDATE PSoftDownload
SET Sect = "0" & Sect
WHERE Left(Sect,1) = "";
Thanks for your help -