Adding two fields together

  • Thread starter Thread starter Graham
  • Start date Start date
G

Graham

Can someone please help on this little problem I have, I am trying to add
two fields together and want to put a " - " in between the two fields.

SoftwareSerial: [txtSoftware]+[txtSerialNo]

Many thanks,

Graham.
 
I think you are trying to concatenate, not add. You can
do it like this:
SoftwareSerial: [txtSoftware]& " - " & [txtSerialNo]
 
Thanks very much, that worked.

Les said:
I think you are trying to concatenate, not add. You can
do it like this:
SoftwareSerial: [txtSoftware]& " - " & [txtSerialNo]

-----Original Message-----
Can someone please help on this little problem I have, I am trying to add
two fields together and want to put a " - " in between the two fields.

SoftwareSerial: [txtSoftware]+[txtSerialNo]

Many thanks,

Graham.


.
 
Back
Top