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

Previous year value when customer name changes but customer references remains the same

Hi,

 

We have a problem that we are not sure how to resolve.

 

We usually assign our customers a customer reference. Our customers sometimes change their name but the customer reference that we give them remains the same when they do so.

 

We have put together a matrix that has the customer name and customer reference in the rows with the value for this year and the value for the previous year in values. We are having an issue showing the previous year value when the customer name changes compared to the previous year. We can resolve this by removing the customer name from the rows but the report consumers wont know who the customer is just based on the customer reference.

 

We have put together an example pbix file with dummy data to demonstrate the issue:

https://www.dropbox.com/s/1zr73oap8ppkiup/Customer%20name%20changes%20-%20Customer%20Reference%20sta...

 

Is it possible to get the previous years value based on the customer reference whilst also showing the customer name?

 

Here is the measure from the file:

 

PY Value =
CALCULATE(
SUM('Table'[Value])
,PARALLELPERIOD('Table'[Date], -1, YEAR)
)
 
Many thanks
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

PY Value = 
CALCULATE(
    SUM( 'Table'[Value] ),
    PARALLELPERIOD( 'Table'[Date], -1, YEAR ),
    ALLEXCEPT( 'Table', 'Table'[Customer Reference] )
)

Screenshot 2021-06-14 204434.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

PY Value = 
CALCULATE(
    SUM( 'Table'[Value] ),
    PARALLELPERIOD( 'Table'[Date], -1, YEAR ),
    ALLEXCEPT( 'Table', 'Table'[Customer Reference] )
)

Screenshot 2021-06-14 204434.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Anonymous
Not applicable

Perfect! Thank you very much

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.