I have a table in powerbi that has columns:
process | row_count |
P1 1
P1 2
P1 3
P2 4
P2 5
P3 2
P3 1
and I want to add a column that will have the average row_count of each process.
For example,
process | row_count | avg_row_count |
P1 1 2
P1 2 2
P1 3 2
P2 4 3
P2 5 3
P3 2 1
P3 1 1
Does anyone know how to do this using Dax /powerbi?