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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
DanielSantos78a
New Member

How to get the distinct value of a column

I have one table called 'Disputed_Invoices' and I would like to get only the distinct values of the invoice balance from a specific invoice instead of the grant total of the same invoice. I would like to use a DAX formulat to solve this. No sure if it is possible with time intelligence. I have added a small part of my data set so you can have better visualation. 

DanielSantos78a_0-1695507003889.png

This is my data model view 

DanielSantos78a_1-1695507101465.png

and this is my calendar table

DanielSantos78a_2-1695507141578.png

 

1 REPLY 1
OwenAuger
Super User
Super User

Hi @DanielSantos78a 

It appears that you want a measure that returns the "latest" balance per Invoice Number - is that correct?

Have a read of this DAX Patterns article on semi-additive calculations as it covers this general topic.

 

The specific example from that article that is similar to yours is

Balance LastDateByCustomerEver

 

To implement in your model:

1. Make sure your 'Calendar' table is marked as a date table (see here)

2. Create this measure following the pattern from the DAX Patterns article:

 

Balance LastDateByInvoice =
VAR MaxDate =
    MAX ( 'Calendar'[Date] )
VAR MaxBalanceDates =
    CALCULATETABLE (
        ADDCOLUMNS (
            SUMMARIZE ( Dispute_Invoices, Dispute_Invoices[Invoice Number] ),
            "@MaxBalanceDate", CALCULATE ( MAX ( Dispute_Invoices[Date] ) )
        ),
        'Calendar'[Date] <= MaxDate
    )
VAR MaxBalanceDatesWithLineage =
    TREATAS ( MaxBalanceDates, Dispute_Invoices[Invoice Number], 'Calendar'[Date] )
VAR Result =
    CALCULATE (
        SUM ( Dispute_Invoices[Invoice Balance (Converted)] ),
        MaxBalanceDatesWithLineage
    )
RETURN
    Result

 

This measure will return the sum the "latest" value of Invoice Balance per invoice, as at the maximum date filtered in the 'Calendar' table.

 

Does this work for you?

Please post back if needed 🙂
Regards


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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