Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a chart either pivot table or straight table. now i need to create a column which should do count of selections made. Example if i make selection on one list box the count should be one , if the selcitions are two then one more row should add in that column as two.
the values should dynamically increase in that column as per the selections made.
Do respond me with set analysis expression
Hi,
Mario thanks for your quick and sharp response, but what if we make sections in more than one list boxes
If the list box is one, try to use
=getselectedcount(Field)
as expression of column,where field is the field of list box.
Hi,
Mario thanks for your quick and sharp response, but what if we make sections in more than one list boxes
=getselectedcount(field1) + getselectedcount(field2) + ...
Try this?
=getselectedcount(field1)+getselectedcount(field2)+getselectedcount(field3)+.....
Hi Jacob,
It works fine
try this:
=SubStringCount( GetCurrentSelections(' | ', '::', '::'),'::')