I have a date of birth that came in to my Access 2003 like this
19680622
So I used this formula to convert it to 06/22/1969
Mid([DOB],5,2) & “/” & Right([DOB],2) & “/” & Left([DOB],4)
which is what I want but it gives me // when there is no DOB in the DOB field. I try doing a find (//) and replace with nothing and it will not get rid of all the 5000 //.
Should the formula have something like is null then add nothing?