The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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))