Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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))