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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Faber13
Helper II
Helper II

TABLE WITH LAST REGISTRATION

Guys, I have a table with records of invoices that are repeated over time, I need to make a distinct count only of the most recent date of the records, ignoring the rest. I believe the value is wrong because we have repeated data in different periods

 

Faber13_0-1669818413486.png

 

1 ACCEPTED SOLUTION

Guys, I managed to solve it with the video below:

https://www.youtube.com/watch?v=hidJ5T_DYQ0   

View solution in original post

4 REPLIES 4
mangaus1111
Solution Sage
Solution Sage

Hi @Faber13 ,

which measure have you used in the wrong card?

I think if you use the function DISTINCTCOUNT('Table'[InvoiceNumber]) it works and then filter the most recent days with CALCULATE .

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

hi @mangaus1111  it's the same measure, it changes in the graph's filter context (for example: the same invoice can be at the beginning and at the end of the month)

Anonymous
Not applicable

Hi @Faber13 ,

You can create a measure as below to get it:

Measure =
VAR _maxdate =
    CALCULATE ( MAX ( 'table'[date] ), ALLSELECTED ( 'table' ) )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'table'[invoice number] ),
        FILTER ( ALLSELECTED ( 'table' ), 'table'[date] = _maxdate )
    )

If the above one can't help you get the expected result, could you please provide some sample data in your tables (exclude sensitive data) with Text format, the formula of measure which apply on the card visual and visual settingsIt is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Guys, I managed to solve it with the video below:

https://www.youtube.com/watch?v=hidJ5T_DYQ0   

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.