Forum Discussion

julienvdc's avatar
julienvdc
Icon for Helper III rankHelper III
2 years ago
Solved

Dynamic monthly average DAX measure

Hey I have this visual as seen below, which shows me the amount of a new user accounts per months. I can filter by year(s) using a slicer that is applied on the user account creation date. Info: T...
  • PijushRoy's avatar
    2 years ago

    Hi julienvdc 

    Can you please try below DAX in measure

     

    =
    DIVIDE (
        COUNT ( YourDataTable[User_ID] ),
        DISTINCTCOUNT ( YourCalendarTable[YearMonth] )
    )

     


    Let me know if that works for you


    If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.

    Thanks
    Pijush
    Linkedin