Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
4 | |
4 | |
3 | |
3 | |
3 |