Forum Discussion
icturion
8 years agoResolver II
countrow value by group
Hi, The intention is to present the number of examinations per month with the number of times that a study had been supplemented positively with the percentage of the number of positive results i...
- 8 years ago
Hi icturion
Try these MEASURES
Total # of Exams = Calculate(Countrows(TableName),TableName[DESCRIPTION]="Onderzoek-1") Total # of Positives = Calculate(Countrows(TableName),TableName[DESCRIPTION]="Positief") %age = [Total # of Positives]/[Total # of Exams]
- 8 years ago
Hi,
Try this
Total # of Exams = Calculate(Countrows(TableName),TableName[DESCRIPTION]="Onderzoek-1"||TableName[DESCRIPTION]="Onderzoek-2")
Hope this helps.
Ashish_Mathur
8 years agoSuper User
Hi,
Try this
Total # of Exams = Calculate(Countrows(TableName),TableName[DESCRIPTION]="Onderzoek-1"||TableName[DESCRIPTION]="Onderzoek-2")
Hope this helps.
icturion
8 years agoResolver II
Thank you Zubair_Muhammad and Ashish_Mathur for the solution. it works
- Ashish_Mathur8 years agoSuper User
You are welcome.