Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, if I want to create a text object with multiple expression like below:
Distributor: ABC
Class: XY
But what I get was (all display in one line):
Distributor: ABC Class: XY
Any idea? Thanks
Regards
Benjamin See
Try:
='Distributor: '&expression_class&'
Class'&expression_class
Note that i have "pushed" intro before i have typed Class....
Try:
='Distributor: '&expression_class&'
Class'&expression_class
Note that i have "pushed" intro before i have typed Class....
='Distributor'&':'& Col1 &chr(10)&'Class'&Col2
use Chr(10) for new line
Hi Benjamin,
Use &' '& to display them in different line.
Thanks,
AS
Hi Benjamin
Use below code in your Text Box Expression:
='Distributor: '&Distributor&' '&'Class: '& Class
See the Attachment
Regards
Aviral Nag
Brilliant. Working as expected.