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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Dynamic Order For TopN Function in DAX

I am new to DAX and probably making a noob mistake. I want to change my TopN order to asc or desc order based on whether the selected measure is summing to positive or negative. But so far, I have not been successful with the below code. I am not sure why the DAX is not accepting OrderTopN variable in order definition. I have been able to solve it the long way but I wanted to know why the below code ain't working?

 

VAR OrderTOPN =IF([ADPR.EM]>=0,1,0)

 

TopN.ADPR =
CALCULATE (
[ADPR.EM],
TOPN (
'mn-value'[n-value Value],
ALL ( 'mprofile'[Org_Name] ),
[ADPR.EM],OrderTOPN
),
VALUES ( 'mprofile'[Org_Name] )
)

 

RETURN TopN.ADPR

0 REPLIES 0

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.