Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Dear All,
I have the folllwing situation:
I want to create a measure showing the result of two types of margins. Depending on the type of product, a certain margin percentage applies. I have simplyfied the sitution below:
The result should be a measure (in red) and is making use of a margin scheme which can be hardcoded in DAX. The margin scheme isn't a separate table,; it's just published to show the margin percentages used.
I am think to make use of a IF ELSE forumlua within DAX. Any other suggestion / solution is welcome.
Thanks!
Solved! Go to Solution.
@Anonymous create this caclulated column:
Result =
'Table'[price] * IF('Table'[Type = "Normal", 0.1, 0.2)
@Anonymous create this caclulated column:
Result =
'Table'[price] * IF('Table'[Type = "Normal", 0.1, 0.2)
Thanks again for your prossible solution.
However, when I run this formula, I get the message that I need to aggregate with Minimum, Maximum, Nummber of Sum function on field 'Table[Type]'. How can I solve this?
Thanks!
@Anonymous hey, just to make sure, cause I missed a columm bracket there, you tried:
Result =
'Table'[price] * IF('Table'[Type] = "Normal", 0.1, 0.2)
And you got that message?
That means you try to create a visaul and not a calculated column.
Try:
Result =
SUMX(
'Table',
'Table'[price] * IF('Table'[Type] = "Normal", 0.1, 0.2)
)
Thanks a lot for this additional suggestion.
However when I use this forumla, I still get a message that column / field [Type] in table 'Table' cannot be found, but this field is a field / column in table 'Table'.
Thanks for any additional suggestion
@Anonymous hey, will PM you now
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
83 | |
78 | |
52 | |
38 | |
35 |
User | Count |
---|---|
93 | |
73 | |
55 | |
52 | |
46 |