Forum Discussion
DDMatador
3 years agoRegular Visitor
Payout Date Help
Howdy, I am new to Power Bi and wanting to figure out how to determine a payout date. Hence the first [OUTDATE] when the Rolling CF is greater than 0. I have attempted this on my ow...
- 3 years ago
Okay, it should work. Here is another way.
Payout Date = MINX(FILTER(ALL('Mon-Forecasts'),'Mon-Forecasts'[Payout Date_Filter]=1),'Mon-Forecasts'[OUTDATE])
DDMatador
3 years agoRegular Visitor
Doesnt appear to be working properly. Here is the return.
BrianConnelly
Resolver III
3 years agoAre you using a calculated column or a measure? And by not working, can you explain what you are expecting as a result?
You could use
Payout Out Measure:=CALCULATE( MIN( [OUTDATE] ), FILTER(ALL('Table1'),Table1[Payout Filter]=1))
Worked as a measure...
- DDMatador3 years agoRegular Visitor
Outdate is a column, Rolling CF is a measure, Payout_Date_Filter is a measure, Payout Date is a measure.
- DDMatador3 years agoRegular Visitor
I am wanting the payout date card to display "7/2023"
- BrianConnelly3 years ago
Resolver III
Modifiy your code and use ALL function.
FILTER(ALL('Table1'),Table1[Payout Filter]=1))