Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
So no idea where to start with this soltuion.
What matrix I am after:
| Week | 1 | 1 | 2 | 2 | 3 | 3 | 4 | 4 |
| Item | Price | Change | Price | Change | Price | Change | Price | Change |
| 123456_ | 5 | 5 | 0 | 6 | 1 | 5 | -1 | |
| 456789_ | 4 | 3 | -1 | 3 | 0 | 4 | 1 |
The input data is from excel with columns for Item, Week, Price. I am wanting to calculate the change in price from one week to the next within PowerBI. Is it possible to create a single column which will accommodate this when added to the matrix, for example:
Week 2 Change = (Week 2 Price) - (Week 1 Price)
Week 3 Change = (Week 3 Price) - (Week 2 Price)
?
Appreciate the help, hopefully someone has a solution!
Solved! Go to Solution.
Hi @JACK__ ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a calculated column.
Change =
IF (
[Week]
= CALCULATE (
MIN ( 'Table'[Week] ),
FILTER ( ALL ( 'Table' ), 'Table'[Item] = EARLIER ( 'Table'[Item] ) )
),
BLANK (),
[Price]
- CALCULATE (
SUM ( 'Table'[Price] ),
FILTER (
'Table',
'Table'[Item] = EARLIER ( 'Table'[Item] )
&& 'Table'[Week]
= EARLIER ( 'Table'[Week] ) - 1
)
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JACK__ ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a calculated column.
Change =
IF (
[Week]
= CALCULATE (
MIN ( 'Table'[Week] ),
FILTER ( ALL ( 'Table' ), 'Table'[Item] = EARLIER ( 'Table'[Item] ) )
),
BLANK (),
[Price]
- CALCULATE (
SUM ( 'Table'[Price] ),
FILTER (
'Table',
'Table'[Item] = EARLIER ( 'Table'[Item] )
&& 'Table'[Week]
= EARLIER ( 'Table'[Week] ) - 1
)
)
)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you, this works great
yes, that sounds like it is possible. Please provide sample data that fully covers your issue.
Please show the expected outcome based on the sample data you provided.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!