Forum Discussion
Anonymous
5 years agoNot applicable
Get value based on highest selected period
Hi all, I'am working on a dashboard to show the development of a fleet. The dashboard consists of mainly three components: 1. A slicer to select the period, 2. A KPI that needs to show the valu...
- Anonymous5 years ago
Something like
CALCULATE(sum(table[field]),Filter(table,table[period]=MAX(Kalender[Period])))Filter(table,table[period]=MAX(Kalender[Period])) == FROM your table you want only the values which have the MAX values in your kalender. When your filter changes the max value will changeFrom those values you want the sum of a certain field
Anonymous
5 years agoNot applicable
Something like
CALCULATE(sum(table[field]),Filter(table,table[period]=MAX(Kalender[Period])))
Filter(table,table[period]=MAX(Kalender[Period])) == FROM your table you want only the values which have the MAX values in your kalender. When your filter changes the max value will change
From those values you want the sum of a certain field
- Anonymous5 years agoNot applicable
Many thanks Remyo, your solution worked for me!
Thanks for your quick reply!