Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have expression below, i want to deduct 100 from that.
100 - expresion. The resulst should be 2 decimals with percentage.
=num(TextCount({<Month = {'$(vMonth)'}, Year = {'$(vYear)'}>}Topic) / count(count1) , '#.00 %')
Hi,
Then Try,
=Num(100-(num(TextCount({<Month = {'$(vMonth)'}, Year = {'$(vYear)'}>}Topic) / count(count1) , '#.00')) ,'#.00 %')
Regards
Hi ,
Try like;
=100-(num(TextCount({<Month = {'$(vMonth)'}, Year = {'$(vYear)'}>}Topic) / count(count1) , '#.00 %'))
Regards,
Ajay
Hi Ajay,
I already tried. forgot to mention - The resulst should be 2 decimals with percentage.
Hi,
Above expression not worked?
For 2 decimals Go to your table---Right click properties---Number---select your expression in left side---Fixed to 2
and select the show in percentage check box.
Regards,
Ajay
Hi,
Unfortunately I am using Textbox.
Any one help?
Hi,
Can you tell me how you created the TEXT Box.Am new to text box.
Thanks,
Ajay
Hi,
Then Try,
=Num(100-(num(TextCount({<Month = {'$(vMonth)'}, Year = {'$(vYear)'}>}Topic) / count(count1) , '#.00')) ,'#.00 %')
Regards
This should do the trick:
=num(100-(TextCount({<Month = {'$(vMonth)'}, Year = {'$(vYear)'}>}Topic) / count(count1) , '#.00 %'))