kabir_hussein Registered User. Local time Today, 06:15 Joined Oct 17, 2003 Messages 191 Jun 4, 2004 #1 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 32.7 KB · Views: 155
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
M Mike375 Guest Jun 4, 2004 #2 [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
[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
kabir_hussein Registered User. Local time Today, 06:15 Joined Oct 17, 2003 Messages 191 Jun 4, 2004 #3 To Mike many many thanks worked a treat kabir
Mile-O Back once again... Local time Today, 06:15 Joined Dec 10, 2002 Messages 11,304 Jun 8, 2004 #4 Mike375 said: [Identifier] & "" & [PartNo] That joins them like a single word. Click to expand... So does: [Identifier] & [PartNo] No need for the Null String in the concatenation.
Mike375 said: [Identifier] & "" & [PartNo] That joins them like a single word. Click to expand... So does: [Identifier] & [PartNo] No need for the Null String in the concatenation.