Hello guys,
I have to develop report in following structure:
My best shot so far was creating matrix, but I don't know how to add the subtotal rows which are calculated as one row values divided by another.
Source data snippet:
Row Number | Column 1 | Column 2 |
21 | 1 | 2 |
22 | 3 | 2 |
23 | 6 | 6 |
24 | 9 | 6 |
Desired output in report:
Row Number | Column 1 | Column 2 |
21 | 1 | 2 |
22 | 3 | 2 |
23 | 6 | 6 |
Row no. 23/Row no. 22 | 2 | 3 |
24 | 9 | 6 |
Row no. 24/Row no. 22 | 3 | 3 |
I was able to create matrix with Row Number but cannot figure out how to add rows with subtotals as showed above.
Any suggestion would be greatly apprecited.
Roy