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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
SLDECO
Regular Visitor

Percentages 100% Help!

Hi there!

I need to do a percentage calculation of two different measures, but I need one to be filtered and one to be ALL.

Below are my measures:

 

SalesCount= DISTINCTCOUNT(Sales[PurchaseID]) -----To get the total number of sales

GradesOut= CALCULATE(DISTINCTCOUNT(Sales[PurchaseID]),FILTER(Purchases,Purchases[GradeDiff]>0)) --- to get all sales graded >0

Now I need to work out the percentage of GradesOut / SalesCount.......... but so that the SalesCount stays the same even after I have used a visualisation filter on the GradesOut.

 

I have used %GradesOut=DIVIDE([GradesOut],[SalesCount]))


This gives me the correct percentage, until I begin to filter. Then it changes my percentages to 100% and my number of SalesCount to equal the number of GradesOut.

 

If someone could help I would be eternally greatful! 

 

Please see below.

 

Filter Issues.png

 




1 ACCEPTED SOLUTION

I have found a solution!

1)     SalesCount= DISTINCTCOUNT(Sales[PurchaseID])

 

2)     GradesOut= CALCULATE(DISTINCTCOUNT(Sales[PurchaseID]),FILTER(Purchases,Purchases[GradeDiff]>0))

 

3)     AllSales = CALCULATE([SalesCount],ALL(Sales))

 

4)     %Of Sales = DIVIDE([GradesOut],[AllSales],0)

 

 

View solution in original post

3 REPLIES 3
jthomson
Solution Sage
Solution Sage

What does making SalesCount = distinctcount(all(sales[PurchaseID])) do?

I get the following error message:

The syntax for ')' is incorrect. (DAX(distinctcount(all(sales[PurchaseID]))))).

I have found a solution!

1)     SalesCount= DISTINCTCOUNT(Sales[PurchaseID])

 

2)     GradesOut= CALCULATE(DISTINCTCOUNT(Sales[PurchaseID]),FILTER(Purchases,Purchases[GradeDiff]>0))

 

3)     AllSales = CALCULATE([SalesCount],ALL(Sales))

 

4)     %Of Sales = DIVIDE([GradesOut],[AllSales],0)

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

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