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
I have two columns where i need to find if [Assigned To] is not match [#"Position closed/Ref by"] then give me [#"Position closed/Ref by"] and rest give me [Assigned To] values
i tried this
if [Assigned To] <> [#"Position closed/Ref by"] then [#"Position closed/Ref by"] else [Assigned To]
Solved! Go to Solution.
@Anonymous , what is the issue ?
this should work in power query
if [Assigned To] <> [#"Position closed/Ref by"] then [#"Position closed/Ref by"] else [Assigned To]
and in dax
if ([Assigned To] <> [#"Position closed/Ref by"] ,[#"Position closed/Ref by"] ,[Assigned To] )
@Anonymous , what is the issue ?
this should work in power query
if [Assigned To] <> [#"Position closed/Ref by"] then [#"Position closed/Ref by"] else [Assigned To]
and in dax
if ([Assigned To] <> [#"Position closed/Ref by"] ,[#"Position closed/Ref by"] ,[Assigned To] )
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!