Forum Discussion
How to count duplicates within date range as applied through slicers
- 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])
Hi,
Create a calculated column formula to extract Date from the Date/Time column
Date = int(Data[DateTime])
Create a Calendar Table and write calculated column formulas to exteact Year, Month name and Month number. Sort the Month name by the month number. To your visual, drag Year and Month name from the Calendar Table and select any one Year and Month name. Write these measures:
Phone number count = counta(Data[Phone])
Measure 1 = countrows(filter(values(Data[Phone]),[Phone number count]>1))
Hope this helps.