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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
lcasey
Post Prodigy
Post Prodigy

Use a calendar table for Invoices and Payments

Hello,

 

I cant beleive I have not found a solution on the web for this extreemly common request. I am hoping someone in here may have a solution.

 

I have 3 tables.  A calendar table an Invoice table and a Payment table.  Very simply, I am trying to calculate correct balances of customer records when choosing a specific date.

 

So when I select a date in the calendar table, it correctly filters the Invoice table to only show invoices as of the date selected, but the related table Payments all payments are showing even if the payment date is AFTER the chosen date in the date slicer.

 

Is there any way that Power BI can allow the selection of a date licer and then filter out not only the Invoice table , but also the paymjents table using that date ?

 

The 01.jpg

4 REPLIES 4
lcasey
Post Prodigy
Post Prodigy

I think I found a measure that may work: 

 

Balance Due = CALCULATE (
   [Balance],
    FILTER (
        ALL ( '00-Bad Debt - Payments'[DATE1]), MAX ( '00-Bad Debt - Invoices'[DOCDATE] )
    )
)

 

 

 

****Note*****

 

The "Balance"  Measure used in the calculate  is a simple formula of the difference between all invoices and all payments.

 

Balance = SUM('00-Bad Debt - Invoices'[SLSAMNT]) - Sum('00-Bad Debt - Payments'[APPTOAMT])

Hi @lcasey,

 

Could you try using the formula below to create a measure to see if it works in your scenario? Smiley Happy

Balance =
SUM ( '00-Bad Debt - Invoices'[SLSAMNT] )
    - CALCULATE (
        SUM ( '00-Bad Debt - Payments'[APPTOAMT] ),
        FILTER (
            ALL ( '00-Bad Debt - Payments' ),
            '00-Bad Debt - Payments'[DATE1] IN VALUES ( Calendar[Date] )
        )
    )

Regards

Hello,

 

Unfortunatly, that didnt work. The Balances are all wrong.    I used your formula in the BalanceTest measure.

 

 

 

01.jpg

That didnt work

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.