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! 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.
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.