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
Anonymous
Not applicable

If Statement Power BI

Looking for a way to include a If statement with multiple conditions into Power BI. Example 

 

If Column B is 2 numbers greater than Column A  be than investigate. otherwise Do Not Investigate. 

 

example of what I am looking to do.

 

A     B       C

1      3      Investigate

2      2      Do Not Investigate

5      6      Do Not Investigate

7      9      Investigate

8      9      Do Not Investigate

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Below dax can be used as per your example:

Column =
IF(
B > A + 2,
"Investigate",
"Do Not Investigate"
)

 

You can use nested If statement to have multiple conditions as shown below:

Price Group =
IF(
'Product'[List Price] < 500,
"Low",
IF(
'Product'[List Price] < 1500,
"Medium",
"High"
)
)

 

Hope this helps

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Below dax can be used as per your example:

Column =
IF(
B > A + 2,
"Investigate",
"Do Not Investigate"
)

 

You can use nested If statement to have multiple conditions as shown below:

Price Group =
IF(
'Product'[List Price] < 500,
"Low",
IF(
'Product'[List Price] < 1500,
"Medium",
"High"
)
)

 

Hope this helps

PaulDBrown
Community Champion
Community Champion

@Anonymous 

Try:

New measure = 
VAR Diff = SUM('Table'[B]) - SUM('Table'[A])
RETURN
SWITCH(TRUE(),
Diff >= 2, "Investigate",
"Do Not Investigate")

 

Invest.JPG

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






RolanRodrigues
Frequent Visitor

You can do this by creating a column and using the following If formula:

C = if(('Table '[b] - 'Table '[a]) = 2, "Investigate", "Do Not Investigate")

Hope this help you 

Have a great day

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.