max date from select dates in dataset
3 TopicsLast Result based on Date Hierarchy
Hi , Need some help in getting last Date based on dates only removing all other filters Sample Date table Year Period Status Date 2019 1 X 1/1/2019 2019 1 X 1/31/2019 2019 2 X 2/28/2019 2019 3 X 3/31/2019 2019 4 A 4/1/2019 2019 4 X 4/5/2019 Desired Output at period level Year Period Status Date 2019 1 X 1/31/2019 2019 2 X 2/28/2019 2019 3 X 3/31/2019 2019 4 X 4/5/2019 I am getting this result if i don't add status column but as soon as i add status column its giving output at period level based on status too Year Period Status Date 2019 1 X 1/31/2019 2019 2 X 2/28/2019 2019 3 X 3/31/2019 2019 4 A 4/1/2019 2019 4 X 4/5/2019 ThanksSolved891Views0likes1CommentMax Week in Month
Hello All! Hoping someone can help! I have data set like this.. each week there is a new snapshot taken. In a matrix I am showing the number of users by location by month. As you can see in the snapshot for 2/11/2021 we have 7 users, 1 in Germany and 6 in Denmark. Problem is what I want to show is the values for the last week in that month. Currently what i get is the output in the first table i.e. 1 in Germany and 1 in Denmark, whereas what I want is the position as of 16/11/2021... the measure needs to be able to always calculate based on the last week of data for that month... so when we add a snapshot for the following week, 23/11/2021, it would use this in instead. I have a date table. Cheers AndySolved4.4KViews0likes8CommentsInner Filter and Outer Filter not working
hi folks, I am trying to do a dual filter on a table, running DirectQuery mode, which doesnt seem to work as I hoped - hoping someone here has better ideas. Example table: Outcome date Outcome 1 Outcome Show 4/5/2019 56 700 4/9/2019 78 800 5/23/2019 250 900 7/30/2019 79 1000 7/30/2019 80 1100 what I am trying to do is a table that shows: Outcome date Outcome Show 7/30/2019 1100 with this Measure: Outcome Filter Measure = SUMX( FILTER( FILTER( 'Outcome Table', 'Outcome Table'[Outcome Date]=MAX('Outcome Table'[Outcome Date]) ), 'Outcome Table'[Outcome 1]=MAX('Outcome Table'[Outcome 1]) ), 'Outcome Table'[Outcome Show]*1 Which ends up showing up blank - because the outer filter doesnt seem to work - ie. DAX views them not as sequential filters, but as "AND" filters. So if dont do the second filter, and just filter for MAX Outcome Date, I end up with first row of Max date, showing 1000, while I want to have the table filtered first down to the Latest date availiable, then within that subset, look for the largest Outcome 1 value, then only show resulting row. Thanks all!1.4KViews0likes2Comments