C
Chris Freeman
Is there a way to concatenate fields on a report? I wanted to create a single
City, State, Zip field. I saw marshall Burton's response from 2008:
Try:
FullName: Trim([dbo_Pr_EmpDemo_T]![chrFirstName]) & " " &
Trim([dbo_Pr_EmpDemo_T]![chrLastName])
But when I tried this I get an error: Address3:
trim([tbl_Check_Reissue]![PayeeCity]) & ", " &
trim([tbl_Check_Reissue]![PayeeState])
Is it possible to do this on the report itself, or do I need to do this in a
query first?
TIA
City, State, Zip field. I saw marshall Burton's response from 2008:
Try:
FullName: Trim([dbo_Pr_EmpDemo_T]![chrFirstName]) & " " &
Trim([dbo_Pr_EmpDemo_T]![chrLastName])
But when I tried this I get an error: Address3:
trim([tbl_Check_Reissue]![PayeeCity]) & ", " &
trim([tbl_Check_Reissue]![PayeeState])
Is it possible to do this on the report itself, or do I need to do this in a
query first?
TIA