Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
icturion
Resolver II
Resolver II

if statement mutliply values

Hello power bi community,

 

We have price agreements for various customers. Now the intention is to multiply a value by a certain value depending on a customer.

 

Example, for customers A, B and C, multiply sell by 2.1. For customer D, multiply by 1.8. customer E multipy by 1.5. and for all other customers multiply by 2.5.

tabel voorbeeld.JPG

Thank you for your help

 

ICTURION

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @icturion ,

 

Try this New caculated column with this formula:

Total1 = 
if(
    'Table (4)'[Customer]="A"|| 'Table (4)'[Customer]="B"||'Table (4)'[Customer]="C",'Table (4)'[Numbers]*2.1,
If(
    'Table (4)'[Customer]="D",'Table (4)'[Numbers]*1.8,
If(
    'Table (4)'[Customer]="E",'Table (4)'[Numbers]*1.5,
'Table (4)'[Numbers]*2.5
)
)
)

 

My output based on your sample:

 

Capture16.PNG

 

Let me know if this is what you are looking for.

 

Thanks,

Tejaswi

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @icturion ,

 

Try this New caculated column with this formula:

Total1 = 
if(
    'Table (4)'[Customer]="A"|| 'Table (4)'[Customer]="B"||'Table (4)'[Customer]="C",'Table (4)'[Numbers]*2.1,
If(
    'Table (4)'[Customer]="D",'Table (4)'[Numbers]*1.8,
If(
    'Table (4)'[Customer]="E",'Table (4)'[Numbers]*1.5,
'Table (4)'[Numbers]*2.5
)
)
)

 

My output based on your sample:

 

Capture16.PNG

 

Let me know if this is what you are looking for.

 

Thanks,

Tejaswi

 

thank you

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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