Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
If I select data in one field how to show the data from another related field in a text object .Please help me write the condition
Regards
Murali Krishna
Hi Murali,
Did you try this yet
Concat(Field,',') or Concat(DISTINCT Field,',')?
Regards,
Sokkorn
if you select one field
then in text object write
=count(related field)
If(Getselectedcount(field)>0,count(related field))
This expression is working fine and giving me the count.However i want the data of the related field to be displayed.
Please help
Regards
Murali
Hi,
Just write the related field in the text box.
Hope it ll work.
Thanks nazneen
It is working if i select a single data
If I am selecting more than one data it is not working and giving me blank
Regards
Murali
Hi Murali,
Did you try this yet
Concat(Field,',') or Concat(DISTINCT Field,',')?
Regards,
Sokkorn
Or
GetFieldSelections(Field) Or
GetFieldSelections(Field,';')
Try this
=Concat(DISTINCT Sale,',')
Thanks Mohit
It is working now.
Thanks cheav
It is working now.