Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hey, fellow Power Bi friends
I want to calculate the diffrence between the latest quantity and the earliest quanitity based on indexes
index | item_quantity |
1 | 5 |
2 | 2 |
3 | 5 |
4 | 6 |
5 | 9 |
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
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
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |