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
uie07923
Frequent Visitor

Show only latest day of each month - Visual

Hi guys,

 

I have a database with inventory values for each day. I don't necessarily have the data for all days.

I need to make a visual that shows only the latest date of each month.

 

As of now, users have to manually filter the last days available for each month.

As it is:

power bi 1.png

 

What I need:

pbi2.png

 

1 ACCEPTED SOLUTION

Hi @uie07923 

You can build a filter measure to achieve your goal.

I build a sample to have a test. YearMonth column is a calculated column.

YearMonth = YEAR(Sheet4[Date])*100+MONTH(Sheet4[Date])

1.png

Measure:

Filter = 
VAR _MaxDate =
    MAXX (
        FILTER ( ALL ( Sheet4 ), Sheet4[YearMonth] = MAX ( Sheet4[YearMonth] ) ),
        Sheet4[Date]
    )
RETURN
    IF ( MAX ( Sheet4[Date] ) = _MaxDate, 1, 0 )

Add this measure into visual level filter field and set it to show items when the value is 1. Result is as below.

1.png

Best Regards,

Rico Zhou

 

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

 

View solution in original post

5 REPLIES 5
lauramirlyn1
Regular Visitor

How can I apply this for multiple items. I have data with different amounts but I only need the last day of the month that was updated but I also have multiple offices in my dataset. So I need to filter by the last day of the month by office.

mahoneypat
Microsoft Employee
Microsoft Employee

Assuming you always have inventory values for the last DOM (vs. last working DOM), you can use a measure expression like this (also assuming you have a separate Date table, but you can use the same approach if not).

 

Last DOM =
VAR thisdate =
    MAX ( 'Date'[Date] )
VAR lastDOM =
    EOMONTH ( thisdate0 )
RETURN
    IF ( thisdate = lastDOM, [Total Sales] )

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Hi there! Thanks for the quick reply.

I don't always have the last DOM. It can be that the last working day of the month was not the last day per se.

Hi @uie07923 

You can build a filter measure to achieve your goal.

I build a sample to have a test. YearMonth column is a calculated column.

YearMonth = YEAR(Sheet4[Date])*100+MONTH(Sheet4[Date])

1.png

Measure:

Filter = 
VAR _MaxDate =
    MAXX (
        FILTER ( ALL ( Sheet4 ), Sheet4[YearMonth] = MAX ( Sheet4[YearMonth] ) ),
        Sheet4[Date]
    )
RETURN
    IF ( MAX ( Sheet4[Date] ) = _MaxDate, 1, 0 )

Add this measure into visual level filter field and set it to show items when the value is 1. Result is as below.

1.png

Best Regards,

Rico Zhou

 

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

 

You are the best, that's exactly what I needed! Thanks and have a great day!

Greetings from Brazil!

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.