Forum Discussion
singhv2
Helper I
9 years agoCalculate Percentage
I want to calculate the percentage of "Y" (Say in Col 3) mentioned for seperate divisions (Say )1,2,3 (in col 1). Please suggest. My requirement is to get the %age of no. of "Y", by an individual di...
- 9 years ago
Try these series of measures.
CountY =: Countrows (
Filter ( Table,
Table1[Column Yes or No] = "Y")
)
CountTransactions =: Countrows ( Table )
%Y =: Divide ( [CountY], [CountTransactions])
GabrielSantos
Resolver I
9 years agoTry these series of measures.
CountY =: Countrows (
Filter ( Table,
Table1[Column Yes or No] = "Y")
)
CountTransactions =: Countrows ( Table )
%Y =: Divide ( [CountY], [CountTransactions])
- singhv28 years ago
Helper I
Thanks Gabriel.