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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.