Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |