Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Dawngrrl
Employee
Employee

Help creating a measure with DAX

Hi Peeps. I need some help. I am trying to create a measure within a column in PBI Desktop with DAX. I have a column called QOS and I want to determine the NSAT.  This means I need to count the values (rows) within the column and subtract them from the grouped sum.  For example:  Sum the count of the 1, 2, 3, and 4 values and the subtract the sum of the count of the 8 and 9 values.  

 

8 = 18

9 = 42

Sum is 60

 

1 = 3

2 = 11

3 = 2

4 = 6

Sum is 22

 

Measure should be the output of 60 - 22=38 Smiley Happy

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Total Rows := COUNTROWS(MyTable)
Low Rows := CALCULATE([Total Rows], MyTable[Value]< 6)
High Rows := CALCULATE([Total Rows], MyTable[Value] >= 6)
Delta := [High Rows] - [Low Rows]

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Total Rows := COUNTROWS(MyTable)
Low Rows := CALCULATE([Total Rows], MyTable[Value]< 6)
High Rows := CALCULATE([Total Rows], MyTable[Value] >= 6)
Delta := [High Rows] - [Low Rows]

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.