I have these two fields in a dataset. How can I concatenate these in Crystal Reports to display next to each other?
select
CAST(T.GLTR_PSTNG_TYPE AS VARCHAR) REF_NO,
CAST(T.GLTR_DOC_CODE AS VARCHAR) GLTR_OUR_DOC_NO
from dom
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will need to create a FORMULA to concatenate these strings.
In the Field Explorer , right click the Formula Fields and select New.
It will prompt you for a Formula Name. Enter the name of your choice, and hit enter.
In the Formula Workshop screen select the 2 fields you require to concat from the Datasource, drag them down to the edit section. The formula should look something like this
Click Save and Close.
Now you can drag the Formula Field onto the report to view.