I have been doing some research on using slicer values for create dynamics measures. However, I am looking for some clarity of developing the measure, since this is my first run at it.
I have two tables:
TableA has columns [Status] and [Decision Date]
TableB has one column [Unique Decision Dates]
TableB has no relationship with TableA.
I am trying to use the new date slider option that was released in the latest version of PowerBI. I have the date slider using the values from TableB.[Unique Decision Dates]. The slider is including values “Before” the selected slider date.
Here is the measure that I am trying to accomplish.
If TableA.[Status] = “XX” or “XY” then “Yes”
If TableA.[Status] = “XT” or “XZ” and TableA.[Decision Date] <= TableB.[Unique Decision Dates] then “N” else “Y”
Thoughts on how best to accomplish this?