Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
magnifybi
Resolver I
Resolver I

Return the first date a measure reaches <0

Hey,

 

I have a measure that essentially takes away cummulative monthly payments away from a initial starting figure.

 

Remaining Business Loan = SUM('Business Loan (Amount)'[Business Loan]) + [Cummulative Payments]
 
This is fine when I put on a chart with months on, but I want to be able to return the first date that the above measure goes below zero, I've tried the following but I'm just getting the first payment date regardless of when it hits 0;
 
Remaining Business Loan Date = IF ([Remaining Business Loan] <0, MIN('Business Loan'[PAYMENT DATE]),BLANK())
 
Any help would be greatly appreciated.
 
Thanks,
 
J
1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

@magnifybi 

Try:

first date below 0 = 

MINX(FILTER(Business Loan, [Remaining Business Loan] < 0), Business Loan [Payment Date])





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

2 REPLIES 2
PaulDBrown
Community Champion
Community Champion

@magnifybi 

Try:

first date below 0 = 

MINX(FILTER(Business Loan, [Remaining Business Loan] < 0), Business Loan [Payment Date])





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






@PaulDBrown LEGEND!!!!

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.