Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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?
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 |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |