- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hide / Remove unwanted columns
AHi,
I am looking for a solumtion to hide unwanted columns in 'Matrix' visual in PBI.
showing you what i have got and what i want it to be
this is the database that i have.
ITEM | Open/ Close |
A | OPEN |
B | OPEN |
A | OPEN |
B | OPEN |
B | CLOSE |
A | CLOSE |
B | CLOSE |
A | CLOSE |
B | CLOSE |
and this is my visual, using 'Matrix' --->
and attached how i get the value in the table.
what i want is i want to hide columns that i don't want which are %RT Count of ITEM for OPEN and TOTAL..!
do you guys have any ideas??
any advice would be much appreciated.
Regards,
CL
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
According to your description, here are two ways:
1)Try to turn the ‘Word warp’ button to ‘Off’ in Column headers in visual format setting.
Then wrap the column you do not want to the left side in order to hide its data:
You can display them again whenever you want just by wrapping them to the right side.
2)Create a measure to replace the %RT Count of Open/Close:
Measure
= IF("OPEN" in FILTERS('Table'[Open/Close]),BLANK(),CALCULATE(COUNT('Table'[ITEM]))/CALCULATE(COUNT('Table'[ITEM]),ALLEXCEPT('Table','Table'[ITEM])))
Change its data format to percentage:
And it shows:
You can also wrap the measure to hide it.
Best Regards,
Giotto Zhi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
According to your description, here are two ways:
1)Try to turn the ‘Word warp’ button to ‘Off’ in Column headers in visual format setting.
Then wrap the column you do not want to the left side in order to hide its data:
You can display them again whenever you want just by wrapping them to the right side.
2)Create a measure to replace the %RT Count of Open/Close:
Measure
= IF("OPEN" in FILTERS('Table'[Open/Close]),BLANK(),CALCULATE(COUNT('Table'[ITEM]))/CALCULATE(COUNT('Table'[ITEM]),ALLEXCEPT('Table','Table'[ITEM])))
Change its data format to percentage:
And it shows:
You can also wrap the measure to hide it.
Best Regards,
Giotto Zhi

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
06-14-2024 04:59 AM | |||
Anonymous
| 02-10-2019 07:44 PM | ||
03-26-2024 11:00 AM | |||
10-09-2023 12:13 AM | |||
11-15-2024 01:25 AM |
User | Count |
---|---|
85 | |
78 | |
41 | |
40 | |
35 |