Hi,
I've used a running total but it could apply to other things; are there advantages or more importantly disadvantages to the following measures;
just curious as to if there is much difference?
Richard
I've used a running total but it could apply to other things; are there advantages or more importantly disadvantages to the following measures;
Excel Formula:
RMT_A:=VAR ddate = MAX( Calendar1[Date])
RETURN
CALCULATE( [Tunits] , FILTER( ALL( 'Calendar1'[Date]), 'Calendar1'[Date] <= ddate ) )
Excel Formula:
RTM_B:=VAR ddate = MAX( Calendar1[Date])
RETURN
SUMX( FILTER( ALL( 'Calendar1'[Date]), 'Calendar1'[Date] <= ddate) ,[Tunits])
Excel Formula:
RTM_C:=VAR ddate = MAX( Calendar1[Date])
RETURN
SUMX(CALCULATETABLE( VALUES( 'Calendar1'[Date]), 'Calendar1'[Date] <= ddate),[Tunits])
just curious as to if there is much difference?
Richard