Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Good day,
we have a list of data as below:
We would like to filter the y status and calculate the total Y and n and display in the dashboard
| Code | Status |
| 507af44e55e76305da17f0349c47254e | n |
| a8f5985ba2ac6f33787015b7ca1e44e4 | y |
| 7b1966b4648969cb817952344e1e58b7 | y |
| 203e99e59f1cbc6c9e777658436af305 | n |
| 0af6270178d703c78089efa7f32b96a3 | y |
| 59129e6d4d5dbb6bd9f4b29c22c40016 | n |
| 7a7f2bcc8fdbfa6c2bd28c49a11601f7 | n |
Result required would be:
Status y = 3
Status n = 4
Solved! Go to Solution.
If all codes are unique: [measure] = countrows( T ). If not, then [measure] = distinctcount( T[Code] ).
Then just slice by the relevant atttributes.
Hi @Anonymous
You could create a measure
Count by Status = COUNT('Table'[Code])
or
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Hi @Anonymous
You could create a measure
Count by Status = COUNT('Table'[Code])
or
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
If all codes are unique: [measure] = countrows( T ). If not, then [measure] = distinctcount( T[Code] ).
Then just slice by the relevant atttributes.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 25 |