Copy part of a record as value in another field

surferxx

Registered User.
Local time
Today, 05:03
Joined
Aug 31, 2006
Messages
12
Im using the UPDATE Query in Access

UPDATE MAT_Clean SET FCODE = 'BC', NOTES = 'HC RAMP'
WHERE FCODE='BC HC RAMP';

Instead of typing what needs to go into NOTES everytime, how can I specify whatever comes after 'BC' to go into NOTES? Use 'BC *'?

Thanks!
 
Yes!...Its 'BC HC RAMP' or 'BC @ FL' or so on
 
try

mid([FieldName],3,(len([FieldName])-2))
 
amazing Keith!. exactly what I wanted!. can you explain that statement to me in detail please and how its doing what its doing?
 

Users who are viewing this thread

Back
Top Bottom