Forum Discussion
denis163
3 years agoFrequent Visitor
Can't get the latest date - evaluation cancelled
Hi all! Is there any options how can I get the latest date in the date column without "latest date" function? Because it doesn't work in with my table in power query and after 10 minutes loading ...
- Anonymous3 years ago
Hi denis163 ,
Please add a step like:= Table.SelectRows(PreviousStepName, each [Source.Date] = List.Max(PreviousStepName[Source.Date]))Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Syndicate_Admin
Administrator
3 years ago
Try this formula:
Measure = MAX(TableName[DateColumnName])
Let me know if it solves your problem.