I have a matrix which contains a rowgroup and groups my products based on the Category. I have three categories: Laptops, Tablets, Televisions. My first two categories contain columns i.e. RAM which I don't want to display for the Televisions. Each category is separated by a page break. I'm trying to hide the column 'RAM' if the Category name is 'Televisions' but only for the specific page
My structure:
- [Categories]
- [ProductID] [Processor] [RAM] [Colour] [etc]
Desired result:
- [Laptop]
- [125] [Intel Pentium] [250 MB RAM] [Black] [etc]
Desired result:
- [Television]
- [126] [Ix TV processor] [White] [etc]
Current result:
- [Television]
- [126] [Intel Pentium] [need to hide this] [White] [etc]