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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

DAX

 

I WANT TO FILL ALL ROWS OF COLUMN (Top1Sales), WITH THE MAX VALUE OF COLUMN(Sales), IN THIS CASE 14230.

tabela.jpg

Measures created:

Sales= SUM(table[sales])

Ranking= RANKX(ALL(Dcalendario[Month]);[sales];;DESC)

Top1Sales =
Var
Ranking=VALUES(Dcalendario[Month])
return
CALCULATE([sales];TOPN(1;ALL(Dcalendario[Month]);[sales]);Ranking)

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Anonymous,

 

Based on your description, you want to get the max sales, right?
If this is a case, you can try to use below measure:

Top1 Sales = MAXX(SUMMARIZE(ALLSELECTED('Table'),[Month],"Total",SUM('Table'[Sales])),[Total])

 

BTW, I'm not recommend you to direct combine use measures who contains the specific filters.

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @Anonymous,

 

Based on your description, you want to get the max sales, right?
If this is a case, you can try to use below measure:

Top1 Sales = MAXX(SUMMARIZE(ALLSELECTED('Table'),[Month],"Total",SUM('Table'[Sales])),[Total])

 

BTW, I'm not recommend you to direct combine use measures who contains the specific filters.

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.