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
Anonymous
Not applicable

Week over Week change for the same document

Hello guys!

 

I have a table called "OPEN POs" that looks like this:

 

WeekNumSupplierPO numberPayment term
33A15830 days
33C10560 days
33Y46930 days
33A42290 days
33Y78975 days
33U156120 days
33Y11145 days
34A15860 days
34C10560 days
34T8890 days
34Z156120 days
34U777120 days
34B87945 days
34Y78945 days
34U156120 days

 

I'm trying to build a matrix like this:

 

Week 34PO numberSupplierFromTo
 158A30 days60 days
 789Y75 days45 days

 

The idea is to show the "PO numbers" that had its "Payment term" changed from one week to another.

The variation always needs to be from the current week (that will be selected on the slicer) versus the previous week.

 

Can you guys please help me on this one?

 

@mahoneypat ideas? 😁 😬

 

Thank you for the support! 🙂

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

What should happen in week number 1 ?

 

Anyway.  Add two calculated columns  (measures are not required here as there is no filter impact)

 

Last Week = 
var p='OPEN POs'[PO number]
var s='OPEN POs'[Supplier]
var w='OPEN POs'[WeekNum]
return calculate(max('OPEN POs'[Payment term]),all('OPEN POs'),'OPEN POs'[PO number]=p,'OPEN POs'[Supplier]=s,'OPEN POs'[WeekNum]=w-1)

Different = SWITCH(TRUE(),ISBLANK('OPEN POs'[Last Week]),"no",[Last Week]='OPEN POs'[Payment term],"no","yes")

 

Then filter your table to Different="yes"

 

lbendlin_0-1597964797261.png

 

 

View solution in original post

7 REPLIES 7
amitchandak
Super User
Super User

@Anonymous , refer my blog on Week over a week using week rank. But for that, you need a week and year. In case you only have a week. You can use week in place of week rank.

Power BI — WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123

 

 

mahoneypat
Employee
Employee

Please try these two expressions for From and To.  They seem to get your desired result.

 

From = var prevweek = Max(Terms[WeekNum])-1
return CALCULATE(MIN(Terms[Payment term]), Terms[WeekNum] = prevweek)
 
To = var latestweek = Max(Terms[WeekNum])
return CALCULATE(MIN(Terms[Payment term]), Terms[WeekNum] = latestweek)
 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

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


lbendlin
Super User
Super User

What should happen in week number 1 ?

 

Anyway.  Add two calculated columns  (measures are not required here as there is no filter impact)

 

Last Week = 
var p='OPEN POs'[PO number]
var s='OPEN POs'[Supplier]
var w='OPEN POs'[WeekNum]
return calculate(max('OPEN POs'[Payment term]),all('OPEN POs'),'OPEN POs'[PO number]=p,'OPEN POs'[Supplier]=s,'OPEN POs'[WeekNum]=w-1)

Different = SWITCH(TRUE(),ISBLANK('OPEN POs'[Last Week]),"no",[Last Week]='OPEN POs'[Payment term],"no","yes")

 

Then filter your table to Different="yes"

 

lbendlin_0-1597964797261.png

 

 

Anonymous
Not applicable

Let me try this solution..

btw, week number one can be null.. no reference to bring any variance. 

that's not what I meant.  Is your report limited to a single year?  Or would you expect week 1 look back at week 52 of the prior year etc?

Anonymous
Not applicable

good catch.. at some point i'll have the same week for a subsequent year

Greg_Deckler
Super User
Super User

@Anonymous - You should be able to borrow the concept from MTBF. See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/339586


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.

Top Solution Authors