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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
IDepi22
Frequent Visitor

Relative Date Filter based on Second Date

Hello,

 

I am trying to filter one date off of another. I need to determine how many people were given both rx1 & rx2 in the same month, using rx2_date as a slicer. Here is some sample data:

 

IDepi22_0-1655931473282.png

 

I attempted to create a measure based on another post:

 

Measure = CALCULATE(count(Table[id]), filter(Table, (Table[rx1_date].[Year] && Table[rx1_date].[Month])=(Table[rx2_date].[Year] && Table[rx2_date].[Month])))
 
but I received an error when using it in my visual. What would be the proper way to achieve my goal?
 
Thank you!
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @IDepi22 ,

 

Please check this measure:

Measure =
CALCULATE (
    COUNT ( 'Table'[id] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        YEAR ( 'Table'[rx1_date] ) = YEAR ( 'Table'[rx2_date] )
            && MONTH ( 'Table'[rx1_date] ) = MONTH ( 'Table'[rx2_date] )
    )
)

 

Best Regards,

Jay 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @IDepi22 ,

 

Please check this measure:

Measure =
CALCULATE (
    COUNT ( 'Table'[id] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        YEAR ( 'Table'[rx1_date] ) = YEAR ( 'Table'[rx2_date] )
            && MONTH ( 'Table'[rx1_date] ) = MONTH ( 'Table'[rx2_date] )
    )
)

 

Best Regards,

Jay 

Thank you for your help! This worked, but I made one adjustment. When I included "ALLSELECTED" in front of the table name, I got the same number for each age and gender breakdown. When I removed that, I was able to break down the total by age and gender.

Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.