Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to get the total count of current selections in the application.
Ex: selections
Year - 2013,2012
Countries: CountryA, CouintryB,CountryC
Comp: X,Y
Total count: 7
got to show this count as popup
This will return the count of current selections:
=SubStringCount(GetCurrentSelections(':',':',',',9999),':')
You can put this expression in a textbox. Or you can put this in the Help Text box of an object:
='Number of selections: ' & SubStringCount(GetCurrentSelections(':',':',',',9999),':')
That will show the number of selections if you hover the mouse over the '?' in the caption of the object.
This will return the count of current selections:
=SubStringCount(GetCurrentSelections(':',':',',',9999),':')
You can put this expression in a textbox. Or you can put this in the Help Text box of an object:
='Number of selections: ' & SubStringCount(GetCurrentSelections(':',':',',',9999),':')
That will show the number of selections if you hover the mouse over the '?' in the caption of the object.
i also tried exactly the same way and got it worked already....thank you somuch for ur reply to confirm