Forum Discussion
Anonymous
9 years agoNot applicable
How do I visualize only the latest date?
I have a table that will be updated weekly with the latest numbers (told sold, revenue, commission). It's updated weekly based on weeks out from the deadline. I would love to create guages, cards, o...
- 9 years ago
if your table is called [MyTable] you could create this as a table for your gauges
Hit the "New Table" button on the Modeling tab of the ribbon
Filter Table = FILTER( CROSSJOIN( 'MyTable', SUMMARIZE( FILTER('MyTable','MyTable'[Total Sold] >0), "Latest week", max('MyTable'[Weeks Out Date]) ) ), [Latest week]='MyTable'[Weeks Out Date])
sewaktamang
8 years agoFrequent Visitor
Hi,
You can just use IF ELSE and MAX DAX function to get latest date data.
You can take refrence from following post also.
How to get latest date and display latest date data
Let me know if you face any issue
Thanks