Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! 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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.