Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys ,
Please refer to image , now i want to have a count of values selected from the ListBox

thanx in advance
count ( distinct %Dimensions )
count ( distinct %Dimensions )
=GetSelectedCount(%Dimensions)
Hi,
Try
Count(Distinct %Dimensions). It will give you distinct count of %Dimensions irrespective of the frequency.
When we try Count(Distinct GetFieldSelections (%Dimensions)), it will give count as only 1, if you remove Distinct here, it will provide count besed on frequency. So
Count(Distinct %Dimensions) should work in your case.
Regards,
Nita
Thanx Guys it worked guess i was a bit stupid there ![]()