Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
hi
I have the following scenario:
Matrix is not calculating the total, I'm able to create measures to count total that gives the total by Year week with SUMX;
= sumx(values(table1[discipline]), [measure switch]
However, how can I exclude a particular row "Open comments" in total.
"Open comments with numbers" shall remain in Matrix.
Thanks
Henrik
Solved! Go to Solution.
@Henrik_99
Please try the following formula. If you want to see only the Row for Open Comments with no data, right-click on the field and choose "Show item with no data"
New Measurre =
sumx(
Filter(
values(table1[discipline]),
table1[discipline]<> "Open comments"
),
[measure switch]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Henrik_99
You can try this modified measure:
New Measurre =
IF(
SELECTEDVALUE(table1[discipline]) <> "Open comments",
sumx(values(table1[discipline]), [measure switch])
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi
See figure below, it doesnt sum correctly and Open comments value disappear.
Rgds Henrik
@Henrik_99
Please try the following formula. If you want to see only the Row for Open Comments with no data, right-click on the field and choose "Show item with no data"
New Measurre =
sumx(
Filter(
values(table1[discipline]),
table1[discipline]<> "Open comments"
),
[measure switch]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
9 | |
1 | |
1 | |
1 | |
1 |
User | Count |
---|---|
11 | |
3 | |
2 | |
2 | |
2 |