Forum Discussion
RichFlorida
2 years agoHelper V
Hiding Row Column in a Matrix Visual
Hello All, Is there a way to hide the 'Rows Column" (country) in the Matrix Visual below, while keeping all the values displayed? I've tried resizing the column and make it narrow en...
- 2 years ago
Hi RichFlorida
- You could turn the text wrap off
- Change the font colour to match the background of the visual.
- Put something over the top like a rectangle to hide it
- Create a calculated column with nothing but spaces (different number for each row) and use thatHidden column = REPT(" ",'Product'[ProductId])
All some what hacky but thats life!
SamWiseOwl
2 years agoSuper User
I like this, elegant.
Can I ask why for step 3 you can't just give the column and empty aliase?
dk_dk
2 years agoSuper User
Haha, you absolutely could. Typical example of me over-engineering a solution when there is a simpler way. well spotted! 😄