Forum Discussion
KoenStam
8 years agoRegular Visitor
Flexible indexed values
(A) I have a relatively simple table with 2 column, one for the date and one containing daily market prices (of aluminium). (B) I made a graph showing the daily prices over the time period covered b...
- 8 years ago
You may add a measure as shown below.
Measure = DIVIDE ( SUM ( 'Primary Aluminium'[Close] ), CALCULATE ( SUM ( 'Primary Aluminium'[Close] ), FIRSTDATE ( ALLSELECTED ( 'Primary Aluminium'[Date] ) ) ) )
v-chuncz-msft
Community Support
8 years ago
You may add a measure as shown below.
Measure =
DIVIDE (
SUM ( 'Primary Aluminium'[Close] ),
CALCULATE (
SUM ( 'Primary Aluminium'[Close] ),
FIRSTDATE ( ALLSELECTED ( 'Primary Aluminium'[Date] ) )
)
)
- KoenStam8 years agoRegular Visitor
Many thanks, your reply solved my question!