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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Super User
Super User

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.