Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello everyone,
I need to calculate the count of the distinct remarks: "Above Expected", "As Expected" and "Below Expected" seen in the remarks column. But the remarks column is a Measure and hence the straightforward COUNT formula doesn't work.
An outcome something of the sort:
is expected.
Or maybe a pie chart showing the distribution.
Any suggestions appreciated!
Thank You!
Solved! Go to Solution.
Hi @Aditi_R ,
Create a table with the Remarks values (inthis case I called it RemarkSelection) then try to adde following measure:
Values =
COUNTROWS (
FILTER (
ADDCOLUMNS ( DISTINCT ( Table[StudentID] ), "Remark", [remark_select] ),
[Remark] in Values ( RemarkSelection[Remark] )
)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Aditi_R ,
Create a table with the Remarks values (inthis case I called it RemarkSelection) then try to adde following measure:
Values =
COUNTROWS (
FILTER (
ADDCOLUMNS ( DISTINCT ( Table[StudentID] ), "Remark", [remark_select] ),
[Remark] in Values ( RemarkSelection[Remark] )
)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks a lot. It is working great!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
107 | |
68 | |
48 | |
47 | |
44 |