Forum Discussion
dofrancis3
2 years agoResolver I
Display last dates values
Hello Colleagues! Please i need your help about the following: I have already a mesure witch contain my pourcentage (in the first column) so, i would like a mesure who will display only pourcen...
Daoud_H
2 years agoHelper I
Hi dofrancis3,
Maybe this will do the trick, try to create a column :
LastDatePercentage =
VAR LatestDate = MAX('YourTableName'[Start date])
RETURN
CALCULATE(
MAX('YourTableName'[LQAS]),
FILTER(
'YourTableName',
'YourTableName'[Start date] = LatestDate
)
)
dofrancis3
2 years agoResolver I