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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

weekly updated report how to use latest entry for each week

Greetings, I have a report that is updated weekly, but the users are allowed to make changes up until the deadline so there may be multiple entries for each item each week. I need to be able to sort out the most recent entry for each item each week. I can show the most recent item easily, but I can't get it to include every week of the month.

 

IsLatestUpdate =
Table1[Week Ending Date]
    = CALCULATE (
        MAX ( Table1[Completion time] ),
        FILTER (
            ALL ( Table1 ),
            Table1[Functional Area] = EARLIER ( Table1[Functional Area]) )
    )

 

 

 

shows me true/false is this the latest update for that Functional Area. But it won't tell me each week of the month. How do I add an extra filter to give me the same information for each week?

 

Capture.JPG 

 

 

1 ACCEPTED SOLUTION

Hi @Anonymous

 

You may add Month column and Week column in query editor first. Then you may create a calculated column as below:

IsLatestUpdate =
Table1[Completion time]
    = CALCULATE (
        MAX ( Table1[Completion time] ),
        FILTER (
            Table1,
            Table1[Month] = EARLIER ( Table1[Month] )
                && Table1[Week of Month] = EARLIER ( Table1[Week of Month] )
                && Table1[Functional Area] = EARLIER ( Table1[Functional Area] )
        )
    )

1.png

Regards,

Cherie

Community Support Team _ Cherie Chen
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

2 REPLIES 2
parry2k
Super User
Super User

@Anonymous can you share sample data to get the solution



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi @Anonymous

 

You may add Month column and Week column in query editor first. Then you may create a calculated column as below:

IsLatestUpdate =
Table1[Completion time]
    = CALCULATE (
        MAX ( Table1[Completion time] ),
        FILTER (
            Table1,
            Table1[Month] = EARLIER ( Table1[Month] )
                && Table1[Week of Month] = EARLIER ( Table1[Week of Month] )
                && Table1[Functional Area] = EARLIER ( Table1[Functional Area] )
        )
    )

1.png

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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