Forum Discussion
Find last value based on date
- 8 years ago
Hi caitertotz,
You could get your expected output by the following steps.
1. Create a calculated table below to get the Week of value.
Table = VALUES(Table1[Week of ])
2. Create a measure below in the Table to filter.
selected = IF(SELECTEDVALUE(Table1[Week of ]) = MAXX(ALLSELECTED('Table'),[Week of ]),1,0)3. Put the selected measure in Visual level filters and create the visual.
In addition, you could have a reference of my test pbix file.
Hope it can help you !:smileytongue:
Best Regards,
Cherry
Hi caitertotz,
You could get your expected output by the following steps.
1. Create a calculated table below to get the Week of value.
Table = VALUES(Table1[Week of ])
2. Create a measure below in the Table to filter.
selected =
IF(SELECTEDVALUE(Table1[Week of ]) = MAXX(ALLSELECTED('Table'),[Week of ]),1,0)3. Put the selected measure in Visual level filters and create the visual.
In addition, you could have a reference of my test pbix file.
Hope it can help you !:smileytongue:
Best Regards,
Cherry