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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
pbeeyeqs
Helper I
Helper I

Figure TOP and BOTTOM 10 PERCENT

 

Data can be found here: https://www.dropbox.com/s/mz6ev4msk8ntop1/pbi_Example.xlsx?dl=0 

 

Have a list of PRODUCT IDS with Product Name, Date and Price.

 

Would like to know how I can import an excel file and find the TOP 10 Percent Increases AND the BOTTOM 10 Percent Increases from the product IDs in the list. 

 

It would need to look at the price on 10/23/19 and the price on 9/18/19 to figure the price increase. If the 9/18/19 price isn't included, it would not be part of the TOP 10

 

For BOTTOM 10, it would look at the same dates. 

 

Then, if possible, create a new column to put the rank for each product ID. Could be T1, T2, T3, .... B1, B2, B3....

 

 

 

Thanks

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

HI, @pbeeyeqs 

Based on my research, you could try this way as below:

Step1:

Create a measure for Percent Increases

price increase = var _currentdate=CALCULATE(MAX('Table'[DATE]),ALLSELECTED('Table')) return
var _lastdate=CALCULATE(MAX('Table'[DATE]),FILTER(ALLSELECTED('Table'),'Table'[DATE]<_currentdate))return
var _currentprice=CALCULATE(SUM('Table'[PRICE]),FILTER('Table','Table'[DATE]=_currentdate)) return
var _lastprice=CALCULATE(SUM('Table'[PRICE]),FILTER(ALLSELECTED('Table'[DATE]),'Table'[DATE]=_lastdate)) return
	CALCULATE(DIVIDE(CALCULATE(SUM('Table'[PRICE]),FILTER('Table','Table'[DATE]=_currentdate)) - _lastprice, _lastprice))

Step2:

Create the rank measure for desc and asc

RankDESC = RANKX(ALL('Table'[PRODUCT NAME],'Table'[PRODUCT]),[price increase],,DESC)
RankASC = RANKX(ALL('Table'[PRODUCT NAME],'Table'[PRODUCT]),[price increase],,ASC)

 Step3:

Create the conditional output

Result = IF([RankDESC]<=10,"T"&[RankDESC],IF([RankASC]<=10,"B"&[RankASC]))

Result:

8.JPG

 

and here is sample pbix file, please try it.

 

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lili6-msft
Community Support
Community Support

HI, @pbeeyeqs 

Based on my research, you could try this way as below:

Step1:

Create a measure for Percent Increases

price increase = var _currentdate=CALCULATE(MAX('Table'[DATE]),ALLSELECTED('Table')) return
var _lastdate=CALCULATE(MAX('Table'[DATE]),FILTER(ALLSELECTED('Table'),'Table'[DATE]<_currentdate))return
var _currentprice=CALCULATE(SUM('Table'[PRICE]),FILTER('Table','Table'[DATE]=_currentdate)) return
var _lastprice=CALCULATE(SUM('Table'[PRICE]),FILTER(ALLSELECTED('Table'[DATE]),'Table'[DATE]=_lastdate)) return
	CALCULATE(DIVIDE(CALCULATE(SUM('Table'[PRICE]),FILTER('Table','Table'[DATE]=_currentdate)) - _lastprice, _lastprice))

Step2:

Create the rank measure for desc and asc

RankDESC = RANKX(ALL('Table'[PRODUCT NAME],'Table'[PRODUCT]),[price increase],,DESC)
RankASC = RANKX(ALL('Table'[PRODUCT NAME],'Table'[PRODUCT]),[price increase],,ASC)

 Step3:

Create the conditional output

Result = IF([RankDESC]<=10,"T"&[RankDESC],IF([RankASC]<=10,"B"&[RankASC]))

Result:

8.JPG

 

and here is sample pbix file, please try it.

 

Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

Assuming you two dates in the slicer. You can try like this.

 

Diff = ( 
VAR _Cuur_start = Minx('Date','Date'[Date]) 
VAR _Curr_END =  Maxx('Date','Date'[Date]) 
return 
if (not(isblank(calculate(Avg(Sales[Sales price]),Sales[Sales Date] = _Cuur_start ))),
calculate(Avg(Sales[Sales price]),Sales[Sales Date] = _Cuur_start )
calculate(Avg(Sales[Sales price]),Sales[Sales Date] = _Curr_END ),null
)
)

 

 

then you can use the top-bottom filter.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors