Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

How to count duplicates within date range as applied through slicers

In a list of DateTime, phone numbers, I need to find out dupes of phone numbers based on user applied filters/slicers against date range.   For exmaple, if user selected date range from 1st Jan 202...
  • amitchandak's avatar
    4 years ago

    Anonymous , You can create a date field , use that in slicer or join it with date table and use slicer from date table

     

    DateTime = datevalue([DateTime])

     

    You can have measures

    M1= count(Table[Phone Numbers])

     

    Duplicate = countx(filter(values(Table[Phone Numbers]) , [M1] >1 ), [Phone Numbers])