cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
pi355113
Frequent Visitor

Returning value based on multiple criteria

Please could you kindly help, I am trying to get a column to return a number based on: 

pi355113_0-1685518640831.png

 

IF

[High Potential?] = No and blank 

[Severity#] = 37

Return 7

AND

[High Potential?] = Yes

[Severity#] = 37

Return 3

AND

[Severity#] = any other numbers

Return [Severity#] value

 

Thank you very much

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @pi355113 
Please try

Value =
IF (
    'Table'[Severity#] = 37,
    IF ( 'Table'[High Potential?] = "Yes", 3, 7 ),
    'Table'[Severity#]
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @pi355113 
Please try

Value =
IF (
    'Table'[Severity#] = 37,
    IF ( 'Table'[High Potential?] = "Yes", 3, 7 ),
    'Table'[Severity#]
)

Thank you so much for your help, much appreciated.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors