Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!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.
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?
Solved! Go to 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] ) ) )
Regards,
Cherie
@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] ) ) )
Regards,
Cherie
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
68 | |
67 | |
41 | |
39 |
User | Count |
---|---|
48 | |
43 | |
29 | |
28 | |
27 |