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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JayV
Frequent Visitor

Find duplicates between "date selected" and "date selected" - 30 days

Hi! 🙂
I have date filters (slicer) for year, month and day in a model that uses a table with [ID] and [Date]
I want to show the duplicates between the "Date selected" and ("Date selected" -30 days)
This is the table:
table.png
If i select "December 1st, 2022" it should only show these:
imagen_2022-12-09_134554652.png

Thank you!

3 REPLIES 3
JayV
Frequent Visitor

I tried using EARLIER() in a calculated column:

 

Repetitive_column =
IF (
    COUNTROWS ( FILTER ( 'Table', 'Table'[ID]  = EARLIER ( 'Table'[ID] ) ) )
        > 1,
    "YES",
    "NO"
)

 

I also tried using this measure and it almost worked (adding the Repetitive_column to the filters if "YES"); It also shows non-duplicates inside the 30d range (if it is a duplicate it shows the row that's inside the 30d range and exclude the one outside):

 

Datefilter_measure =
CALCULATE (
    COUNTROWS('Table'),
    DATESINPERIOD ( 'Table'[Date], LASTDATE ( 'Table'[Date] ), -30, DAY ) 
)

 

amitchandak
Super User
Super User

@JayV , Try meausres like this

 

Have duplicate
measure =
var _cnt = calculate(count('Table'[ID]))
return
countx(Values('Table'[ID]), if(_cnt>1, [ID], Blank()))


Have No duplicate
measure =
var _cnt = calculate(count('Table'[ID]))
return
countx(Values('Table'[ID]), if(_cnt>1, [ID], Blank()))

Excuse me, where should i use this or how could i add the -30 day filter? should i add it to my existing dax?
Thanks for the help!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors