Forum Discussion
Anonymous
4 years agoNot applicable
How to show diffrence between 2 weeks in one table?
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...
- 4 years ago
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.
amitchandak
4 years agoSuper User
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))