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!View all the Fabric Data Days sessions on demand. View schedule
Hi
Could someone help me how to show diffrences between weeks?
This is an example.
Sales team has deals with stages, in diffrent weeks and values.
I need to show "THE Diffrence" between two weeks (checked in visualisations)
The result I am looking for in the last table
Can somebody help?
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous ,
Please create a new table.
Table 2 =
VAR tab =
CROSSJOIN (
ALLSELECTED ( 'Table'[Salesman] ),
ALLSELECTED ( 'Table'[Stage] ),
ALLSELECTED ( 'Table'[Week] )
)
RETURN
ADDCOLUMNS ( tab, "Value", CALCULATE ( SUM ( 'Table'[Value] ) ) )
Then use the measure.
Measure =
SUM ( 'Table 2'[Value] )
- CALCULATE (
SUM ( 'Table 2'[Value] ),
FILTER (
ALLSELECTED ( 'Table 2'[Week] ),
'Table 2'[Week]
= MAX ( 'Table 2'[Week] ) - 1
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please create a new table.
Table 2 =
VAR tab =
CROSSJOIN (
ALLSELECTED ( 'Table'[Salesman] ),
ALLSELECTED ( 'Table'[Stage] ),
ALLSELECTED ( 'Table'[Week] )
)
RETURN
ADDCOLUMNS ( tab, "Value", CALCULATE ( SUM ( 'Table'[Value] ) ) )
Then use the measure.
Measure =
SUM ( 'Table 2'[Value] )
- CALCULATE (
SUM ( 'Table 2'[Value] ),
FILTER (
ALLSELECTED ( 'Table 2'[Week] ),
'Table 2'[Week]
= MAX ( 'Table 2'[Week] ) - 1
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Try a measure like
//Date1 is independent Date table
new measure =
var _max = maxx(allselected(Date),Date[Week])
var _min = minx(allselected(Date),Date[Week])
return
calculate( sum(Table[Value]), filter('Table', 'Table'[Date] =_max)) - calculate( sum(Table[Value]), filter('Table', 'Table'[Date] =_min))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!