Forum Discussion
qwertzuiop
1 year agoAdvocate III
Dynamic Aggregation and Visualization of Reporters by row_sum
Hello Dear Power BI Community, I'm writing this post because, even with ChatGPT, I couldn't solve my problem. Dataset Example Let's assume I have the following table: Reporter Year Count 2...
- 1 year ago
Hi qwertzuiop
You will need to materialize the count using a table containing a column of all possible counts.
CountsTable = SELECTCOLUMNS ( GENERATESERIES ( 1, 10, 1 ), "Count", [Value] )Count Materialized = COUNTROWS ( FILTER ( SUMMARIZECOLUMNS ( 'Table'[Reporter], "@value", [Sum of Count] ), [@value] IN VALUES ( CountsTable[Count] ) ) )Please see the attached sample pbix.
- 1 year ago
Hi,
PBI file attached.
Hope this helps.
Ashish_Mathur
1 year agoSuper User
Hi,
PBI file attached.
Hope this helps.