Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a Customers List box. There are 92 customers. In the title the display should be "Customers = 92/92". If I select 3 customers then the display should change to "Customers = 3/92". Can anybody please let me know how to display?
Use the expression
=GetSelectedCount(customer) & '/' & Count({1<customer=>}distinct customer)
for the title in the List box Properties Window -> General tab

Use the expression
=GetSelectedCount(customer) & '/' & Count({1<customer=>}distinct customer)
for the title in the List box Properties Window -> General tab

This expression should work too:
=Count(Distinct customer) & '/' & Count({1} Distinct customer)
Hi,
another one:


hope this helps
regards
Marco