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.
Hi Everyone
I am trying to create a conditional column that checks a number of criteria and, depending on the answer to those queries, gives a result.
To give some info, I have a table containing [column A] and [column B]. I need to ask these if statements:
If [column A] equals "1" or "2" or "3" or "4" and [column B] equals "X" or "Y" I want it to return "OK"
If [column A] equals "1" or "2" or "3" or "4" and [column B] does not equal "X" or "Y" I want it to return "Check".
If [column A] does not equal "1" or "2" or "3" or "4" and [column B] does not equal "X" or "Y" I want it to return "OK"
If [column A] does not equal "1" or "2" or "3" or "4" and [column b] equals "X", or "Y" I want it to return "Check"
I have tried various IF statements with a mixture of && or || but none seem to yield the desired result. I have two questions:
1) Is it possible?
2) How is the best way to do it, without creating other conditional columns before hand?
Solved! Go to Solution.
Hi @JamesBockett ,
You could use " in {1,2,3,4} " instead of using multiple equals.
For example:
column = IF(
([columnA] in {1,2,3,4}&&[columnB] in {"x","y"}) || ([columnA] not in {1,2,3,4}&&[columnB] not in {"x","y"}),
"OK",
if(
([columnA] in {1,2,3,4}&&[columnB] not in {"x","y"}) || ([columnA] not in {1,2,3,4}&&[columnB] in {"x","y"}),
"check") )
Or you could use switch() function.
Switch(true(), conditon, value, conditon, value)
Best Regards,
Jay
Hi @JamesBockett ,
You could use " in {1,2,3,4} " instead of using multiple equals.
For example:
column = IF(
([columnA] in {1,2,3,4}&&[columnB] in {"x","y"}) || ([columnA] not in {1,2,3,4}&&[columnB] not in {"x","y"}),
"OK",
if(
([columnA] in {1,2,3,4}&&[columnB] not in {"x","y"}) || ([columnA] not in {1,2,3,4}&&[columnB] in {"x","y"}),
"check") )
Or you could use switch() function.
Switch(true(), conditon, value, conditon, value)
Best Regards,
Jay
Hi @Anonymous
The in function worked although, not in wasn't a supported operator. Instead, I used
column = IF(
([columnA] in {1,2,3,4}&&[columnB] in {"x","y"}) || not([columnA] in {1,2,3,4}not[columnB] in {"x","y"}),
"OK",
if(
([columnA] in {1,2,3,4}&¬[columnB] in {"x","y"}) || not([columnA] in {1,2,3,4}&&[columnB] in {"x","y"}),
"check") )
Looks like it has had the desired effect though, thanks for your support.
Hi @JamesBockett ,
Can you share what logic you have used in Power BI which is not working?
Thanks,
Pragati
Hi @Pragati11
I've tried a few but to give you an idea, I have tried:
I don't know if it helps but, values 1, 2, 3 and 4 are a variation of the same value. so 1 is "1-a", 2 is "1-b", 3 is "1-c", 3 is "1-d". Values "X" and "Y" are actual X is blank and Y is "NONE"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
58 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |