I would like to concatenate fields in a Query and divide them with a / sign. The problem is that not all the records in one of the fields have a value like:
Code Additionalcode
PMHAC34 01
PPCNM56
PSSANC62 12
And so on...
I would like the finished field to look like this:
Code
PMHAC34/01
PPCNM56
PSSANC62/12
But not like this:
Code
PMHAC34/01
PPCNM56/
PSSANC62/12
Does anyone know how to do this or an easier way to go about it?
Code Additionalcode
PMHAC34 01
PPCNM56
PSSANC62 12
And so on...
I would like the finished field to look like this:
Code
PMHAC34/01
PPCNM56
PSSANC62/12
But not like this:
Code
PMHAC34/01
PPCNM56/
PSSANC62/12
Does anyone know how to do this or an easier way to go about it?