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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

need to exclude few items of a column

Hi,

 

I've 10 different tickect types and I'm trying to not count three of them to find the total pending tickets. The status I'm trying to ignore are "Closed, Resolved, Resolved - Self Heal" and the additional condition I'm trying to use is that "Resolution SLA Met = NO".

 

Any help on this would be appriciated.

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I don't know how your data strutcture looks like but you can give a shot with these below formulas:

 

You can either create a DAX measure  something like this and put it in a visual Level filtes and apply filter "is blank"

 

DAX Measure = Var _status=SELECTEDVALUE(Sheet1[status])
return
If( _status ="Closed"  || _status ="Resolved" || _status ="Resolved-Self Heal" 
,1,blank())

Or a Dax Column like this and put it in a Page level filter /Visual Level filter and apply filter to show Blank

DAX Column  = 
If(Sheet1[status]  ="Closed"  || Sheet1[status] ="Resolved" || Sheet1[status] ="Resolved-Self Heal"
  ,1,blank())

Let me know if this works.

 

Thanks,

Tejaswi

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

I don't know how your data strutcture looks like but you can give a shot with these below formulas:

 

You can either create a DAX measure  something like this and put it in a visual Level filtes and apply filter "is blank"

 

DAX Measure = Var _status=SELECTEDVALUE(Sheet1[status])
return
If( _status ="Closed"  || _status ="Resolved" || _status ="Resolved-Self Heal" 
,1,blank())

Or a Dax Column like this and put it in a Page level filter /Visual Level filter and apply filter to show Blank

DAX Column  = 
If(Sheet1[status]  ="Closed"  || Sheet1[status] ="Resolved" || Sheet1[status] ="Resolved-Self Heal"
  ,1,blank())

Let me know if this works.

 

Thanks,

Tejaswi

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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
Top Kudoed Authors