Forum Discussion

clim2f88j's avatar
clim2f88j
Frequent Visitor
3 years ago
Solved

Monthly Calculation Table

Hello everyone, i’m a new Power BI user so i apologize for my entry level question.   I need to create a table that gives me the separated total amount of “issues” per month and totals. This data i...
  • Ritaf1983's avatar
    3 years ago

    Hi clim2f88j 

    In order to achieve your goal, you can:

    Preparing data in PQ is the first step:
    Add a column with the month names

    2. Add column with concatenating string "issue" to your issues:

    after it press "close and apply"
    3 . Create a measure to count rows for issues with Dax: 

    ISS_QTY = count('Table'[ Issue ])

    4. Create Matrix with , months in rows, issues on columns and your measure on values

    Link to sample file 

     

    If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly