Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Please help me how to get the Percentage. Currently I m using below formula in expression:
For % field:
Count(if(len(trim([Txn Month]))>0, AR_ID)) / Count(TOTAL if(len(trim([Txn Month]))>0, AR_ID))
For NoA field:
Count(if(len(trim([Txn Month]))>0, AR_ID))
Result:
Issue:
Actually I want the result show the Total as 100 % for each Txn Month whereby the percentage of each Channel Type whereby the percentage for each Txn Month = NoA for Channel Type / NoA for Txn Month Total.
e.g.: for Non-Electronic (August)
286,980 / 457,852 = 0.6268 (62.68 %)
Currently I can get 100% for the Grand Total only. How can I have result as below:
How about this:
Count(if(len(trim([Txn Month]))>0, AR_ID)) / Count(TOTAL <[Txn Month]> if(len(trim([Txn Month]))>0, AR_ID))
How about this:
Count(if(len(trim([Txn Month]))>0, AR_ID)) / Count(TOTAL <[Txn Month]> if(len(trim([Txn Month]))>0, AR_ID))
Sunny, Thanks for the solution...