Split field value into two

Poppy

Registered User.
Local time
Today, 12:06
Joined
Feb 22, 2005
Messages
18
Dear Sirs/Madams

Is it possible to split the data in a field into two using a query?

Code:
AccountNo
58850119
45457489
58883939
86584747

TO THIS

PubAccountNo             PrivAccountNo
5885                      0119
4545                      7489
5888                      3939
8658                      4747

I appreciate all your help

Kind Regards
 
Look up the LEFT() and RIGHT() functions in Access help.

Left([YourField],4)

etc

Col
 
Thanx

Kind Regards
 

Users who are viewing this thread

Back
Top Bottom