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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Measure ignores some report level filters

I have two measures. One factors in ALL report level filters and the other does not. Why is this?

 

Works with all report level filters including the slicer on the "Created" date field:

Total Searches = COUNT('Usage Statistics'[ID])

Works with some report filters, but ignores the slicer on the "Created" date field

2017-06 = CALCULATE(COUNTROWS('Usage Statistics'), 'Usage Statistics'[Created] >= date(2017,06,01), 'Usage Statistics'[Created] < date(2017,7,01))

 

Why does the first one factor in all report filters but the second one does not? How can i get the second one to factor in the slicer on the "Created" date. Even though each measure shows monthy totals, if you change the slicer you would expect these to move to zero.

 

Adding ALLSELECTED to the measure does not seem to work.

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

2017-06 =
CALCULATE (
    COUNTROWS ( 'Usage Statistics' ),
    FILTER (
        'Usage Statistics',
        'Usage Statistics'[Created] >= DATE ( 2017, 06, 01 )
            && 'Usage Statistics'[Created] < DATE ( 2017, 7, 01 )
    )
)

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

2017-06 =
CALCULATE (
    COUNTROWS ( 'Usage Statistics' ),
    FILTER (
        'Usage Statistics',
        'Usage Statistics'[Created] >= DATE ( 2017, 06, 01 )
            && 'Usage Statistics'[Created] < DATE ( 2017, 7, 01 )
    )
)

 

Regards

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors