Forum Discussion
Monthly Calculation Table
- 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 names2. 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
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
- 3 years ago
Hi clim2f88j
1 use filter / slicer by year and just select the year you interested to analyse
2. You need to sort months names by column of their number .
Please refer my answer in the linked discussion:
It includes samle file
I hope it helps, Rita
Hi,
Create a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort Month name by Month number. Create a relationship (Many to One and Single) from the Date column of your Data Table to the Date column of the Calendar Table. To your visual, drag Year and Month name from the Calendar Table. Write this measure
Measure = coalesce(countrows(Data),0)
Hope this helps.