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 All,
Solved! Go to Solution.
Hey @Anonymous ,
as a calculated column the formula seems to be correct.:
myColumn = IF(SharePointList1[WorkStatus]="A" && SharePointList1[Status]="Completed", UNICHAR("128994"))
Did you add it to the table SharePointList1?
Do you receive an error message?
Best regards
Denis
Hello @Anonymous ,
where do you want to use that? In a calculated column or a measure?
If it's in a measure your columns need an aggregation:
myColumn =
IF(
MAX(SharePointList1[WorkStatus]) = "A" && MAX(SharePointList1[Status]) = "Completed",
UNICHAR( "128994" )
)
@selimovd tq for your balze reposne , I need the experssion in Calulated Column .
But I didn't find luck to the expersion . Please extend your support.
Hey @Anonymous ,
as a calculated column the formula seems to be correct.:
myColumn = IF(SharePointList1[WorkStatus]="A" && SharePointList1[Status]="Completed", UNICHAR("128994"))
Did you add it to the table SharePointList1?
Do you receive an error message?
Best regards
Denis