Join 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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello I am wanting to add a conditional column in my dataset so it checks for the following outcomes. The column would then be a Match or Non Match. So something like IF(AND(??
See below outcomes.
MATCH
Sat > sat
Sat> sat minor
Sat minor > Sat
Risk of > risk of
Unsat > unsat
NO MATCH
Sat> risk of/unsat
Sat minor > risk of/unsat
Risk of > sat/sat minor/ unsat
Unsat> sat/sat minor/ risk of
My data looks a bit like this - Mock up
Customer_Outcome | Overscore | Match column |
Satisfactory | Satisfactory with minors |
You could do it that way but using && and || is cleaner in my opinion. And you might consider SWITCH
Can you give me an example of how I could use it Greg?