Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to display both the count (frequency) and the percentage for the field in a list box object. I know that in properties you select 'show frequency' to show the count and 'In Percent' to show the count in a percentage format. I need to display both for the field for example:
Type:
A 20 (20%)
B 50 (50%)
C 30 (30%)
Any suggestions would be greatly appreciated.
Thanks...
You can use the expression tab within the list box properties tab:
and write a expression like this:
=Count(Type) & ' (' & Num(Count(Type)/Count(TOTAL Type), '#.0%') & ')'
HTH
Best,
Sunny
Or use this expression if you don't want the count and % to change based on a selection of type:
=Count({<Type = >}Type) & ' (' & Num(Count({<Type = >}Type)/Count({<Type = >}TOTAL Type), '#.0%') & ')'
HTH
Best,
Sunny
see tis,
Thank you Sunindia..That worked...
Awesome ![]()
I am glad it worked
Mark it as Answered....