Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Expert,
we want Current selection value in text object how to achieve this please suggest.
Hi,
Try Distinct keyword it eliminates the duplicates
=Concat(DISTINCT Period,',')
OR you can also use GetFieldSelections(Period)
Regards,
Jagan.
Hi,
Try this, if you want Nothing in the text box when nothing is selected from that field..
= if(GetSelectedCount(Field Name)=0,'',Concat(DISTINCT Field Name,','))
Concat() will display all Periods when nothing is selected
PFA