Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
working on a project where I want to create measure/DAX of price difference between brands.Using the following data I want to create the price diffrence between Brand A with All other brands for regions.
Sample data:
Brand Name | Region | Date | Price |
A | X | 22-09-2021 | 300 |
B | X | 22-09-2021 | 320 |
C | X | 22-09-2021 | 310 |
A | Y | 22-09-2021 | 330 |
B | Y | 22-09-2021 | 316 |
C | Y | 22-09-2021 | 321 |
A | Z | 22-09-2021 | 337 |
B | Z | 22-09-2021 | 337 |
C | Z | 22-09-2021 | 310 |
D | Z | 22-09-2021 | 302 |
E | Z | 22-09-2021 | 328 |
F | Z | 22-09-2021 | 335 |
Hi @BhoomiT
try this
difference =
var _PriceA = CALCULATE(MIN('Table'[Price]),FILTER(ALLSELECTED('Table'),'Table'[Brand Name]="A"))
var _currPrice = MIN('Table'[Price])
return _currPrice-_PriceA
result
if you need more help, please @ me.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@BhoomiT , A new column for price of A and then you can take a diff
A price = maxx(filter(Table, [region] =earlier( [region] ) && [Brand Name] ="A") , [Price])
diff = [Price] -[A price]
a measure, if needed
A price = maxx(filter(allselected(Table), [region] =max( [region] ) && [Brand Name] ="A") , [Price])
Thank You Amit,
This is working perfact up to region level filters but, when I tried to calculate it at branch and terittory level ( level down the region) then there is minor deviation in the calculation.
request you to please guide me how can I calculate a measure so that it works for region, branch, terittory filters as well as time filters.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
56 | |
38 | |
34 |
User | Count |
---|---|
99 | |
56 | |
51 | |
44 | |
40 |