Reputation: 21
I want to concatenate city and pincode field in crystal report. I have tried:
{datafield1.city}&"-"&{datafield2.pin}
It is displaying ex: Mangalore-568,757.00
But I want mangalore-568757
Upvotes: 2
Views: 20801
Reputation: 1645
{datafield1.city}&"-"&totext({datafield2.pin},"#")
Upvotes: 5