Forum Discussion

djaaiin93's avatar
djaaiin93
Frequent Visitor
5 years ago
Solved

DistinctCount with filters

Hi,


I'm trying to create a measure using distinctcount to calcualate the number of visits made by each user in each month.


Here's what my table looks like:
Table1

VisitIDUserIDVisitDate
1A1/1/2020
2A1/1/2020
3B3/1/2020
4A1/2/2020
5B1/2/2020
6B3/2/2020
7A1/3/2020
8C1/3/2020

 

The output should look like

UserIDMonthVisits
AJanuary 20202
BJanuary 20201
AFebruary 20201
BFebruary 20202
AMarch 20201
CMarch 2020

1

 

Thanks in advance!

3 Replies

  • djaaiin93's avatar
    djaaiin93
    Frequent Visitor

    The above pbix has a simple measure and it works fine!

    It was an issue with my relationships which I was able to resolve.

    for anyone who's new to powerBI and faces this issue, remember that your active relationships work as filters for your data. Having a well modeled data model saves you a world of pain.

     

    thanks again negi007 !

    • djaaiin93's avatar
      djaaiin93
      Frequent Visitor

      Hi,

      Thanks for your reply. It's crazy because I've been racking my head trying something overly complicated. I tried using the count, countrows, distinctcount functions but I keep seeing the same value (total number of rows in the table) being repeated for each user and each month-year. I only have data starting from Nov 2020 but this function shows values from 2014 to 2099 (Entire date range of my date table). It seems like the relationships I have is where the issue is.