Forum Discussion
oitp
6 years agoHelper I
Sum latest values based on date (duplicate dates)
Hi, I have a table as the table describes. I want to sum the values that has the latest UpdatedDate. So if we keep the table as an example I want to sum the three rows with the UpdatedDate 2019-12-15...
az38
6 years agoCommunity Champion
oitp you can show us data example and data model then we'll try to fix it together
do not hesitate to give a kudo to useful posts and mark solutions as solution
oitp
6 years agoHelper I
How do I do that? Can I share something for you or do you want some print screens? 🙂
- az386 years agoCommunity Champion
yes, screenshots. ot ypu could upload ypur pbix-file to the cloud like https://uploadfiles.io/
do not hesitate to give a kudo to useful posts and mark solutions as solution
- az386 years agoCommunity Champion
Hi oitp
ive reached the limit for number of private messages 🙂
try:
1. add measure to the left table visual
2. create and show result calculation a measure
calculate(max(Table1[Updated Date]);all(Table1))
do not hesitate to give a kudo to useful posts and mark solutions as solution