Hi All,
I'm trying to look at two fields using recordsets and if the number is less then 7 places put 00 in front of the number. ex. 12345 would then = 0012345. The datatype in the database is Text. It would iterate throught the table to see what records needed to be changed, update them and then exit.
rstImport.MoveFirst
Do Until rstImport.EOF
If Len(rstImport![Project ID]) And Len(rstImport![Customer ID]) < 7 Then
?????????????????
Loop
Thanks
Dutt
I'm trying to look at two fields using recordsets and if the number is less then 7 places put 00 in front of the number. ex. 12345 would then = 0012345. The datatype in the database is Text. It would iterate throught the table to see what records needed to be changed, update them and then exit.
rstImport.MoveFirst
Do Until rstImport.EOF
If Len(rstImport![Project ID]) And Len(rstImport![Customer ID]) < 7 Then
?????????????????
Loop
Thanks
Dutt