Forum Discussion
IDepi22
4 years agoFrequent 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: ...
- Anonymous4 years ago
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
Anonymous
4 years agoNot 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
IDepi22
4 years agoFrequent Visitor
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.