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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello!
How can I implement this function in DAX syntax?
iif (Currency= „RON”, „No”, case lower(RiskCoverage) when „no” then „Yes” when „Yes” then „No” end) as [Currency_Risk]
Solved! Go to Solution.
Hi @ANM_97 create column as below
New column=IF(table[Currency]="RON","NO",if(table[riskCoverage]="Yes","NO","YES"))
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
@ANM_97 , Like this
New measure=IF(max(table[Currency])="RON","NO", switch( true(),lower(max(table[riskCoverage]))="yes","NO", lower(max(table[riskCoverage]))="no","YES"))
Row context will play a role
It works!
Thank you very much! ~
Hi,
Thanks for the answers!
Could I use a measure instead of a new column?
@ANM_97 , Like this
New measure=IF(max(table[Currency])="RON","NO", switch( true(),lower(max(table[riskCoverage]))="yes","NO", lower(max(table[riskCoverage]))="no","YES"))
Row context will play a role
try like
Try as
New column=IF(table[Currency]="RON","NO", switch( true(),lower(table[riskCoverage])="yes","NO", lower(table[riskCoverage])="no","YES"))
Hi @ANM_97 create column as below
New column=IF(table[Currency]="RON","NO",if(table[riskCoverage]="Yes","NO","YES"))
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |