Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
a simple sintaxe like this used to work.... i dont know its not working anymore after the few lastest updates
Teste= IF (BaseFat2[Cod custumer] IN (4433;1740;5808;5685) ; "shopping";"market" )
the IN statment is not working anymore, i cant even use OR... and i dont want to use multiple if conditionals
Can someone help me to solve this or build a new formula??
Solved! Go to Solution.
hi, try using this DAX
Test =
IF (
Table1[Codcustomer] = 4433
|| Table1[Codcustomer] = 1740
|| Table1[Codcustomer] = 5808
|| Table1[Codcustomer] = 5685,
"shopping",
"market"
)
hi, try using this DAX
Test =
IF (
Table1[Codcustomer] = 4433
|| Table1[Codcustomer] = 1740
|| Table1[Codcustomer] = 5808
|| Table1[Codcustomer] = 5685,
"shopping",
"market"
)
it worked -.-
do you know why " IF xxx IN (z,y,a,b)" stoped working?
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 20 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 63 | |
| 56 | |
| 47 | |
| 44 | |
| 37 |