Reply
avatar user
Anonymous
Not applicable
Partially syndicated - Outbound

IF ELSE in measure using DAX

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:

 

Power_BI_Adapt_1-1655977390650.png

 

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!

 

 

 

 

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

Syndicated - Outbound

@Anonymous create this caclulated column:

 

Result = 
'Table'[price] * IF('Table'[Type = "Normal", 0.1, 0.2)

 


In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos.


SpartaBI Logo

Visit SpartaBI website   Visit SpartaBI Linkdin   Visit SpartaBI Facebook

Showcase Report – Contoso By SpartaBI

View solution in original post

5 REPLIES 5
SpartaBI
Community Champion
Community Champion

Syndicated - Outbound

@Anonymous create this caclulated column:

 

Result = 
'Table'[price] * IF('Table'[Type = "Normal", 0.1, 0.2)

 


In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos.


SpartaBI Logo

Visit SpartaBI website   Visit SpartaBI Linkdin   Visit SpartaBI Facebook

Showcase Report – Contoso By SpartaBI

avatar user
Anonymous
Not applicable

Syndicated - Outbound

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!

Syndicated - Outbound

@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)
)


In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos.


SpartaBI Logo

Visit SpartaBI website   Visit SpartaBI Linkdin   Visit SpartaBI Facebook

Showcase Report – Contoso By SpartaBI

avatar user
Anonymous
Not applicable

Syndicated - Outbound

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

Syndicated - Outbound

@Anonymous hey, will PM you now

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)