Forum Discussion
FredLEGUEN
Helper III
7 years agoFilter a page based on MAX Date
Hi, I would like to know how I can filter a page of my PowerBI report automatically on the last date of my database. I have created a basic measure MaxDate = MAX(DateColumn) Then I have trie...
- 7 years ago
Hi, try creating a calculated column
LastDateInData = IF ( Table1[OrderDate] = MAX ( Table1[OrderDate] ), 1, 0 )
and filter when this column is 1.
Regards
Victor
Vvelarde
Community Champion
7 years ago
Hi, try creating a calculated column
LastDateInData = IF ( Table1[OrderDate] = MAX ( Table1[OrderDate] ), 1, 0 )
and filter when this column is 1.
Regards
Victor
Anonymous
4 years agoNot applicable
I am using a Power BI dataset, I don't have the ability to create calculated columns, is achieving this possible?