Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
What do I need to do to have a correct total on the highlighted table? It should be 7.
Thanks!
Solved! Go to Solution.
You need to add up the individual values, not compute the whole thing at the aggregate level. Try
Active GA+1 =
SUMX (
VALUES ( 'Table'[Sales partner code] ),
IF ( [Gross Addition Daily] >= 1, 1, 0 )
)
where 'Table'[Sales partner code] is the column you are grouping by in the matrix
You need to add up the individual values, not compute the whole thing at the aggregate level. Try
Active GA+1 =
SUMX (
VALUES ( 'Table'[Sales partner code] ),
IF ( [Gross Addition Daily] >= 1, 1, 0 )
)
where 'Table'[Sales partner code] is the column you are grouping by in the matrix
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
13 | |
13 | |
11 | |
6 |