Split field value into two (1 Viewer)

Poppy

Registered User.
Local time
Today, 05:28
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
 

ColinEssex

Old registered user
Local time
Today, 03:28
Joined
Feb 22, 2002
Messages
9,175
Look up the LEFT() and RIGHT() functions in Access help.

Left([YourField],4)

etc

Col
 

Poppy

Registered User.
Local time
Today, 05:28
Joined
Feb 22, 2005
Messages
18
Thanx

Kind Regards
 

Users who are viewing this thread

Top Bottom