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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have 2 status column I need to have a slicer for the usere from both the columns .
I should create a column if the Status is Active from Active_Status irrespective of anything in Unavaliable_Status and I should get Unavaliable if the value is unavaliable from Unavaliable_Status.
Solved! Go to Solution.
Hi @Anonymous ,
If you two status columns can be shown in power query, you can try to merge.
Select two columns in Power Query and right-click to select merge columns.
Click OK.
Or you can create a calculated column.
Required result = IF([Acitive_Status]=BLANK(),[Unavailable_Status],[Acitive_Status])
You can check more details from
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly..
Hi @Anonymous ,
If you two status columns can be shown in power query, you can try to merge.
Select two columns in Power Query and right-click to select merge columns.
Click OK.
Or you can create a calculated column.
Required result = IF([Acitive_Status]=BLANK(),[Unavailable_Status],[Acitive_Status])
You can check more details from
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly..
@Anonymous ,
Try to create Calculated Column like below:
@Anonymous - It was Active Status:
Column = IF(ISBLANK(Tbl2[Active Stautus])=FALSE(),"Active","Inactive")
@Anonymous so tweak your DAX like this:
Column = IF(ISBLANK(Tbl2[Active Stautus])=FALSE() OR ISBLANK(Tbl2[Unavailable Status],"Active","Inactive")
This is my requirment
Column = IF(ISBLANK(Tbl2[Available Stautus])=FALSE(),"Active","Inactive")
I dont have column called Available Status, what is it refreing for ?
@Anonymous , try like
if(isblank([Active_status]) || [Active_status] = "", [Unavaliable_Status],[Active_status])
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I have shared the sample data to your mail please check
Check your email
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.