March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi!
I wanna calculate between periods by measure.
Periods are 1.1,1.2 and i wanna calculate difference between periods of products 1838 and 3262.
There will be new column between every period where will be calculated diferrence
Thanks!
Solved! Go to Solution.
Hi @LuciaS ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _current=
SUMX(
FILTER(ALL('Table'), 'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]=MAX('Table'[Group1])&&'Table'[Group2]=MAX('Table'[Group2])),[Value])
var _next=
SUMX(
FILTER(ALL('Table'), 'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]=MINX(FILTER(ALL('Table'),'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]>MAX('Table'[Group1])),[Group1])
&&'Table'[Group2]=MAX('Table'[Group2])),[Value])
return
_current - _next
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @LuciaS ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _current=
SUMX(
FILTER(ALL('Table'), 'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]=MAX('Table'[Group1])&&'Table'[Group2]=MAX('Table'[Group2])),[Value])
var _next=
SUMX(
FILTER(ALL('Table'), 'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]=MINX(FILTER(ALL('Table'),'Table'[Flag]=MAX('Table'[Flag])&&'Table'[Group1]>MAX('Table'[Group1])),[Group1])
&&'Table'[Group2]=MAX('Table'[Group2])),[Value])
return
_current - _next
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
90 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |