Forum Discussion
johmedrano
8 years agoFrequent Visitor
COUNT CALCULATED MEASURE
Hello,
I have a calculated measure called Final Status that is based on different criteria from my Sales Table.
I would need to count the number of rows for each of the final Status measures: NEW, LAPSED, EXISTING
Could you possibly help me ?
Thanks a lot,
HI johmedrano
Try this Calculated Table
From the Modelling Tab>>New Table
New Table = SUMMARIZE ( SUMMARIZE ( TableName, TableName[PartnerName], "MyMeasure", [Final Status] ), [Final Status], "MyCount", COUNT ( TableName[PartnerName] ) )
2 Replies
- Zubair_Muhammad
Community Champion
HI johmedrano
Try this Calculated Table
From the Modelling Tab>>New Table
New Table = SUMMARIZE ( SUMMARIZE ( TableName, TableName[PartnerName], "MyMeasure", [Final Status] ), [Final Status], "MyCount", COUNT ( TableName[PartnerName] ) )- johmedranoFrequent Visitor
It works. Thanks a lot.