Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 @Anonymous
Please try
Value =
IF (
'Table'[Severity#] = 37,
IF ( 'Table'[High Potential?] = "Yes", 3, 7 ),
'Table'[Severity#]
)
Hi @Anonymous
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.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |