Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
=IF($(=Concat(DISTINCT ‘GetSelectedCount(‘ & $Field & ‘)’, ‘ + ‘)) = 0, 1, 0)
This will give you a count of the current selections:
=$(=concat('getselectedcount([' & $Field & '])','+'))
But if you only want to know if there are any selections, try: if(len(getcurrentselections)),1,0)
Try this IF(Concat(DISTINCT GetSelectedCount($Field), '+') = 0, 1, 0)
Thanks but it is only showing 1and never 0
This will give you a count of the current selections:
=$(=concat('getselectedcount([' & $Field & '])','+'))
But if you only want to know if there are any selections, try: if(len(getcurrentselections)),1,0)
Great it works.I wanted to get if there are any selections or not.
Regards,
Gaurav