Question Employee number generation

dr_thapalathy

New member
Joined
Mar 15, 2009
Messages
1
Programming Experience
1-3
How can we write a query in MS Access that generates automatic employee id in the following format?

E001, E002 etc..
 
Why not jsut have an autonumber column storing 1, 2, 3... and when you display it, show it as "E" & Format(id, "000")
 
Back
Top