Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Chart Filtered

Hi Gurus, 

 

I have a pretty hard requirement (to me).

 

I need to filter only the Planned hours bar that are 'Closed'. this value comes from a column, when I filter the chart it apples to whole visual ( Including COV-CANC,COV-CONT, COV-HLD2 etc..) I only need to filter PLANNED bar. is there anyway to acheive this impossible. 

 

Chart Requirement.JPG

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

 

@amitchandak , only few rows, what I want is to exclued PM_ORDER_SYSTEM_TYPE that include CLSD from only PLANNED Rev_Group.

 

PM_ORDER_SYSTEM_STATUSPM_ORDER_USER_STATUSTotal_HoursStatusDisplayedRev_Group
CNF,NMAT,PRC,PRT,SETCE115CLSDFalsePLANNED
TECO,PCNF,DLFL,NMAT,PPRT,PRC,SETCE190CLSDFalseCOV-HLD2
CLSD,NMAT,PRC,SETCCANC1CANCFalsePLANNED
CLSD,CNF,CSER,GMPS,MACM,PRC,PRT,SETCE186CLSDFalseCOV-CAN
Anonymous
Not applicable

Hi @Anonymous ,

 

Is below column what you need?

Annotation 2020-06-26 160015.png

Here is the dax expression:

 

Column = 
var _check=SEARCH("CLSD",'Table'[PM_ORDER_SYSTEM_STATUS],1,0)
Return
IF('Table'[Rev_Group]="PLANNED"&&_check=1,BLANK(),'Table'[Rev_Group])

 

 

 
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors