Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hello!
I just uploaded this question but i didn't label it correctly and I think it got lost in the flow.
I have a table that looks like this:
The price of something will be (one of the "HRR" + one of the "Turn")
The prices are calculated for each alternative via a measure.
Im thinking something like this:
Price =
Calculate(
[Price Measure],
Filter(
'Table',
'Table'[HRR or Turn] = "HRR"
)
)
+ Calculate(
[Price Measure],
Filter(
'Table',
'Table'[HRR or Turn] = "Turn"
)
)
My question is how do i display this in a table?
I want:
| HRR | HRR Price | Turn | Turn Price | Total Price |
| Ovako | 12345 | Leax | 12345 | 98765 |
with all alternatives. (2x3)
Do you have any suggestions on how I can either change the layout of the data so that it is easily done or how can model my data/measures?
@Anonymous Where does price measure come from please? You may need to use a CROSSJOIN to get all options or split your data into two unrelated tables - one table for HRR and another table for Turn. Each table should have the Product Code and the option (HRR or TURN). Then you'll relate these to the DimProduct table and you should be able to create a visual using your already existing [Price Measure] (depending on how that's calculated).
Can you paste sample data as a table format (raw data, as separate tables if that's how they come in, and including the price)
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 38 | |
| 31 | |
| 27 |