Forum Discussion
AlexAlberga727
6 years agoResolver II
Retrieving LASTDATE when another column = 0
Folks - Im looking for a solution to something I would imagine to be very simple. Please help! In the below screenshot you will see a visual which illustrates when specific product's invento...
- 6 years ago
AlexAlberga727 - Perhaps:
Measure = MAXX(FILTER('Table',[Avail Qty] > 0),[Date])If a column. If a measure, create a table variable that represents the data in your visual (summarized by date for instance, use ADDCOLUMNS to add your measure, do your MAXX over that table variable.
saraMissBI
6 years agoResolver I
Try the following:
measure = CALCULATE(LASTDATE(Table[Date]), [DaysNotAllocated] = 0)
If my answer resolves your issue, please give Kudos and mark as solution.
Thank you