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
Emoes
Helper I
Helper I

Add extra Filter measure

Hello,

I have a table called "IT Risk List"

On that Table I'm using the following Measure:

msRISK-Backlog =
var em = ENDOFMONTH(Dates[Date])
var f = filter(all('IT Risk List'),'IT Risk List'[Created]<=em)
var g = filter(all('IT Risk List'),coalesce('IT Risk List'[Date Closed],em+1)<=em)
return countrows(f)-countrows(g)This works perfectly.

 

But on this measure, I'm unable to filter.

I would like to remove two statuses called:

"Annual Audit

"Closed"

So From the 'IT Risk List'[status] I would like to remove the two statuses but I can't get the measurements right.

Can someone please help me?

 

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Emoes 

please try

msRISK-Backlog =
VAR em =
    ENDOFMONTH ( Dates[Date] )
VAR f =
    FILTER (
        ALL ( 'IT Risk List' ),
        'IT Risk List'[Created] <= em
            && NOT ( 'IT Risk List'[status] IN { "Annual Audit", "Closed" } )
    )
VAR g =
    FILTER (
        ALL ( 'IT Risk List' ),
        COALESCE ( 'IT Risk List'[Date Closed], em + 1 ) <= em
            && NOT ( 'IT Risk List'[status] IN { "Annual Audit", "Closed" } )
    )
RETURN
    COUNTROWS ( f ) - COUNTROWS ( g )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @Emoes 

please try

msRISK-Backlog =
VAR em =
    ENDOFMONTH ( Dates[Date] )
VAR f =
    FILTER (
        ALL ( 'IT Risk List' ),
        'IT Risk List'[Created] <= em
            && NOT ( 'IT Risk List'[status] IN { "Annual Audit", "Closed" } )
    )
VAR g =
    FILTER (
        ALL ( 'IT Risk List' ),
        COALESCE ( 'IT Risk List'[Date Closed], em + 1 ) <= em
            && NOT ( 'IT Risk List'[status] IN { "Annual Audit", "Closed" } )
    )
RETURN
    COUNTROWS ( f ) - COUNTROWS ( g )

Hi Tamerj1,

 

Super, you helped me out.

Maybe easy for you but I could not create/understand it.

Thanks again, this works perfectly.

 

Emoes

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.

Top Solution Authors