Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Couldn't find a previous post for this.
Say we have a table called Number
When both 1 and 2 are selected in slicer, I want the text to read "1 and 2 are found".
Why is the following measure not working properly?
Solved! Go to Solution.
Hi. The problem is that the 1 is not evaluated in that statement. It's only evaluating the 2. That's why it works with the two.
Try adding the condition for both:
Measure =
IF (
1 IN VALUES('Table'[Column1])
&& 2 IN VALUES('Table'[Column1])
, "1 and 2 selected"
, "False statement"
)
Hope this helps,
Happy to help!
@Anonymous , In DAX the && or || operator will only work to separate two complete conditions with its operations. You can't use "and" to separate numbers or make smaller conditions. You always have to write the complete statatement for each one. You can think them as AND() or OR() functions. They need the complete statement inside the function.
Hope this make sense
Happy to help!
Hi. The problem is that the 1 is not evaluated in that statement. It's only evaluating the 2. That's why it works with the two.
Try adding the condition for both:
Measure =
IF (
1 IN VALUES('Table'[Column1])
&& 2 IN VALUES('Table'[Column1])
, "1 and 2 selected"
, "False statement"
)
Hope this helps,
Happy to help!
Hi,
Hope this helps.
Thank you, that work splendid. Can you explain why the 1 was not being evaluated?
No, that did not solve it. selecting anything will now give the "1 and 2 are found" message.
It can't be a calculate type measure, as the list to choose from might also be text.
So instead of Numbers 1,2,3,4,5,6
Let's assume it's A,B,C,D,E and when specifically A and B is chosen, I want "A and B are chosen".
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |