Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Help me on this,When I select the Single Data in the List box the related particular field data that should display in the text box.
Ex:
List Box Text Box
3G Related to 3G Data Should be
Displayed
Thanks & Regards,
Sivakumar
Concat([yourfield],'\n')
=concat(distinct [particular field data],'; ')
hi,
in text box expression use this
concat(DISTINCT [FieldName],';')
and
in layout->show-> Conditional give this condition
iGetSelectedCount(ListBoxField)=1
Regards
Vivek
Hi Gysbert,
Thanks for your reply i got it but i need vertical format.
EX :
s001
s002
s003
Now iam getting in horizontal format.
EX : s001 s002 s003
Thanks & Regards,
Sivakumar
so edit to
=concat(distinct [particular field data],'; '&chr(10))
Concat([yourfield],'\n')
Use chr(13) like:
=concat(distinct [particular field data] & chr(13) )
Hi All,
Its possible to display two fields data in one text object.
EX;
text box it should like this.
a b
1 tom
2 raja
3 rich
when i select data in list box
Thanks & Regards,
Sivakumar
Concat(field1&' '&field2,'\n')
EDIT: please try like below
='Field1'&' '&'Field2'&'\n'&Concat(Field1&' '&Field2,'\n')