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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.