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
majid_75
Helper I
Helper I

HELP! RANKX with TOP 5

Hello,

 

Can you help me with my measure.

 

I want to filter with a slicer TOP 5, my indicator, here is my 3 measure:

 

Pipe =

CALCULATE(
ta_fact[Pipe Dyn],
FILTER(
ALL(Date_),
Date_[Year]=YEAR(DATE(LEFT( SELECTEDVALUE(Date_[Yearmonth]),4),RIGHT( SELECTEDVALUE(Date_[Yearmonth]),2),1 ))
&& Date_[Yearmonth] > SELECTEDVALUE(Date_[Yearmonth])
&& Date_[Date] <= ENDOFYEAR(Date_[Date])
)
)

RankX = RANKX(ALL(table1[Name]),[Pipe],,DESC)

- Indicator = CALCULATE([Pipe],FILTER(VALUES(ta_fact_saleslead[Owner_Name]),[Range]<=5))
 
 

I But i don't understand my problem, pls!

pbi.PNG

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@majid_75 , your last formula does not seem fine, are you trying to filter rank or range

Try like

Indicator = CALCULATE(sumx(values(Table[Name]),[Pipe]),FILTER(VALUES(ta_fact_saleslead[Owner_Name]),[Rank]<=5))

 

Or use TOPN - https://www.youtube.com/watch?v=QIVEFp-QiOk

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@majid_75 , your last formula does not seem fine, are you trying to filter rank or range

Try like

Indicator = CALCULATE(sumx(values(Table[Name]),[Pipe]),FILTER(VALUES(ta_fact_saleslead[Owner_Name]),[Rank]<=5))

 

Or use TOPN - https://www.youtube.com/watch?v=QIVEFp-QiOk

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.

Top Solution Authors