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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vozniak
Helper I
Helper I

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 @vozniak

 

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

@vozniak 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 @vozniak

 

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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