Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Please could you kindly help, I am trying to get a column to return a number based on:
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
Solved! Go to Solution.
Hi @pi355113
Please try
Value =
IF (
'Table'[Severity#] = 37,
IF ( 'Table'[High Potential?] = "Yes", 3, 7 ),
'Table'[Severity#]
)
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!