Forum Discussion
KH11NDR
Helper IV
8 years agoDate slicer, need the difference of value
Hi, I have a field with values in them, let's say it's called sales. And I have a master calendar table linked via Date field. What I'm trying to show in a table or chart is, what's the differe...
- 8 years ago
You may use FIRSTDATE Function and LASTDATE Function to calculate the variance from starting and ending points. For example:
Measure = CALCULATE ( SUM ( 'Table1'[Value] ), LASTDATE ( 'Table1'[Date] ) ) - CALCULATE ( SUM ( 'Table1'[Value] ), FIRSTDATE ( 'Table1'[Date] ) )
v-chuncz-msft
Community Support
8 years ago
You may use FIRSTDATE Function and LASTDATE Function to calculate the variance from starting and ending points. For example:
Measure =
CALCULATE ( SUM ( 'Table1'[Value] ), LASTDATE ( 'Table1'[Date] ) )
- CALCULATE ( SUM ( 'Table1'[Value] ), FIRSTDATE ( 'Table1'[Date] ) )