Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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?
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
67 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
26 | |
25 |