Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I want to create a custom column with below formula in power query.
MODE = IF(OR('Final'[A]>100,'Final'[B]>112 || 'Final'[C]>70),"FTL","LTL")
Solved! Go to Solution.
Hi @Anonymous ,
Try this:
if [A] > 100 or ([B] > 112 or [C] > 70) then "FTL" else "LTL"
Pete
Proud to be a Datanaut!
Hi @Anonymous ,
Try this:
if [A] > 100 or ([B] > 112 or [C] > 70) then "FTL" else "LTL"
Pete
Proud to be a Datanaut!
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.