Part No = calculations

kabir_hussein

Registered User.
Local time
Today, 06:15
Joined
Oct 17, 2003
Messages
191
Hi i was wondering is any way where you can add two fields up (chracters + numbers) to get a part No .

i have attached a screen shot of the table i am trying to do. many many thanks

kabir
 

Attachments

  • calculations.JPG
    calculations.JPG
    32.7 KB · Views: 155
[Identifier] & "" & [PartNo]

That joins them like a single word

[Identifier] & " " & [PartNo]

That puts a space between them, like you would make one field from firstname and surname.

Mike
 
To Mike

many many thanks

worked a treat

kabir
 
Mike375 said:
[Identifier] & "" & [PartNo]

That joins them like a single word.

So does: [Identifier] & [PartNo]

No need for the Null String in the concatenation. :rolleyes:
 

Users who are viewing this thread

Back
Top Bottom