Forum Discussion
PowerBITestingG
3 years agoResolver I
Summarize by max date
I have been looking around the forum but I cant seem to figure it out
I have this table:
| Name | Lastdate |
| Microsoft | 04/01/2017 |
| Microsoft | 03/01/2018 |
And I want to create this table:
| Name | LastDate |
| Microsoft | 03/01/2018 |
I am using summarize(table, name, "max",max(date)) but somehow I am getting 04/01/2017.
Its probably something obvious but I would appreciate your help
Is "LastDate" formatted as text or as Date? There should be the problem 😉
Format it as Date ...
2 Replies
- lukiz84Memorable Member
Is "LastDate" formatted as text or as Date? There should be the problem 😉
Format it as Date ...
- PowerBITestingGResolver I
Yep that was it, thank you!