Forum Discussion
Insert a blank row in matrix visualization
Hello,
Here is a scenrio. Any help is appreciated!!!
I want to insert a blank row btween my each instance of group in matrix visualization.
Please refer to the below snapshot. Currently when I use matrix, "C2" details are printed from the next line. I want the blank row as show in the screenshot just before details of "C2".
| Category | Product | Amount |
| C1 | P1 | 1000 |
| P2 | 1500 | |
| P3 | 1800 | |
| C2 | P4 | 1200 |
| P5 | 1300 |
Thanks,
Ankit
19 Replies
- Jason-CraftNew Member
Hello,
Add a new blank row to your category column and make sure it is ordered to be between C1 and C2. Ensure that the matrix is set to show that new category. Then right click the category field on the matrix visuals rows section and select "show items with no data."- lbendlinSuper User
Now available but only for the top category
- ankit2747Frequent Visitor
Hello,
Here is a scenrio. Any help is appreciated!!!
I want to insert a blank row btween my each instance of group in matrix visualization.
Please refer to the below snapshot. Currently when I use matrix, "C2" details are printed from the next line. I want the blank row as show in the screenshot just before details of "C2".
Category Product Amount C1 P1 1000 P2 1500 P3 1800 C2 P4 1200 P5 1300 Thanks,
Ankit
- Greg_DecklerCommunity Champion
I am not aware of a way to do that.
- AnonymousNot applicable
If you don't need totals in this matrix you could leave totals on and format all the columns so the totals are the same color as the page background. Otherwise no I don't think there's a way to do this in a matrix visual.
- vanessafvgCommunity Champion
could you use a union statement to add a blank row?
- ankit2747Frequent Visitor
Hello,
Union is used to create a join of two tables. Are you suggesting to take a blank table?
Can you please explain.
Thanks!!
- AnonymousNot applicable
I think that suggestion was based on a misunderstanding of what you were asking for...
- mwadhwaniKudo Kingpin
Hello ,
Category C1 is appearing only once, in my case its appearing for each row.
Can you please help me how to achieve it.
Thanks.
- sebouierFrequent Visitor
Here's a workaround:
- Choose a matrix visual
- Add a subtotal row
- Empty its name (usually "Total")
Then, you have to modify your measure:
IF(HASONEVALUE([Product]),[Amount],BLANK()) - JMD22SiFrequent Visitor
I just created a new measure of whatever (count of x = 1) and formatted the text and the background accordingly - quite happy with it. FYI, I'm not totalling my rows.