Is there a way to give a singular field (that is below a row with multiple columns) its own row in a paginated report table?
I am trying to create a report that displays various information for help tickets including fields like the submission date, subject, ticket status, etc. I am trying to get all the info on one table so it is displayed like:
ticket table:
Column A | Column B | Column C | Column D |
---|---|---|---|
field a | field b | field c | field d |
field e | continuation of e | continuation of e | continuation of e |
field | field | field | field |
field e | continuation of e | continuation of e | continuation of e |
Unfortunately I cannot figure out a way to give the ticket comment its own row. It just gets grouped in that first column. Basically I just want the recent comment field to stretch across the length of the table
Any ideas on how I can give the ticket comment its own full row?
Thanks!
I tried inserting the comment field in that first column expecting it to automatically go the width of the table but it get stuck in the width of the first column. I also tried creating a matrix, but the result appeared the same as the table visual. Also tried creating another table but then all the comments get displayed after the rest of the ticket info. I want it to be like: ticket info 1 , comment 1, ticket info 2, comment 2 as opposed to: ticket info 1, ticket info 2, comment 1, comment 2