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
BraveStarr
Frequent Visitor

Trouble reporting sales per a sales level group per fiscal year

Hello -

 

I have a simple model of tables Salesperson, Sales, and Date. In the Salesperson table I have two measures: Total Sales Amount and Total Sales Level Group. The Total Sales Amount is the salesperson's total sales that can be filtered by fiscal year. The Total Sales Level Group is a group like Gold, Silver, Bronze, or Red based on the Total Sales Amount.

 

model.png

 Fields.png

 

My Total Sales Amount DAX is: 

Total Sales Amount =
SUM ('Sales'[Amount] )
 
My Total Sales Level Group DAX is:
Total Sales Level Group =
IF([Total Sales Amount] >= 1000,"Gold",
IF([Total Sales Amount] >= 500,"Silver",
IF([Total Sales Amount] >= 100, "Bronze", "Red"
)))
 
This works as expected if I list each salesperson by name, their Total Sales Amount, and Total Sales Level Group and apply a Fiscal Year filter. However, I would like to show just the Total Sales Level Group and the Total Sales Amount for that group. This is just totaling the whole Sales Amount and giving the largest group. Is it possible to group by the Total Sales Level Group?

 
Any help would be much appreciated. Thank you!
 
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

CNENFRNL_0-1653253662146.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

CNENFRNL_0-1653253662146.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

That did it. Thank you!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors