Here is the sample dataset, having 2 columns, Data, and Name
The problem is to create a measure that is going to count the number of name occurrences having a count greater than 2
Step 1 is to find the Names that show up at least once a day without a timestamp
Step 2 is to find names that have occurrences of more than 2 from the output got of Step 1:
Step 3: is to get the distinct count of names from Step 2:
Expected Output = 2
Not sure how to do this in DAX.
Note: I m looking for a measure that gives the Output = 2 and not the steps, the steps are for understanding purposes/ or to provide clarity