Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
116 | |
82 | |
47 | |
42 | |
28 |
User | Count |
---|---|
186 | |
80 | |
72 | |
48 | |
45 |