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
notalex
Frequent Visitor

Calculate the difference between the latest quantity and the earliest quantity

Hey, fellow Power Bi friends 

I want to calculate the diffrence between the latest quantity and the earliest quanitity based on indexes

indexitem_quantity 

1

5
22
35
46
59


for example i want to know the diffrence between the item_qunaitity of the 1st index and the item_quanity of the 5th index whch is 80% ((9-5)/5)

All help will be much appreciated 

1 REPLY 1
andhiii079845
Solution Sage
Solution Sage

Try this:

MeasureIndex = 
 VAR __minindex = CALCULATE(minx('Table','Table'[index]))
 VAR __maxindex = CALCULATE(maxx('Table','Table'[index]))
 VAR __maxindexvalue = CALCULATE(sumx(FILTER('Table','Table'[index]=__maxindex),'Table'[item_quantity ]))
 VAR __minindexvalue = CALCULATE(sumx(FILTER('Table','Table'[index]=__minindex),'Table'[item_quantity ]))
 RETURN (__maxindexvalue-__minindexvalue)/__minindexvalue

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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