Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Good afternoon,
I created a calculate which I tried to insert more than 2 filter but it is not possible on the OR function :
Solved! Go to Solution.
Hi @Anonymous
The OR fucntion only allows 2 conditions.
For 3+ conditions you can either nest OR statements or use the double pipe symbols (||)
For your case it would be as follows;
FILTER('Countries; 'Countries'[Country] = "Belgium" || 'Countries'[Country] = "France" || 'Countries'[Country] = "Suisse" || 'Countries'[Country] = "UK" ));
Hope this helps,
George
Hi @Anonymous
The OR fucntion only allows 2 conditions.
For 3+ conditions you can either nest OR statements or use the double pipe symbols (||)
For your case it would be as follows;
FILTER('Countries; 'Countries'[Country] = "Belgium" || 'Countries'[Country] = "France" || 'Countries'[Country] = "Suisse" || 'Countries'[Country] = "UK" ));
Hope this helps,
George
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.