Break dynamic data into sections in a table
I have some data that is being dynamically output into a table. I have multiple line items for each ECO Number on their own rows. For instance:
| ECO | Part Number | Revision |
|---|---|---|
| 1 | C4520 | A |
| 1 | C5680 | B |
| 1 | C8902 | A |
| 2 | C5000 | B |
| 2 | C5050 | C |
| 2 | C4950 | A |
How can I put in a blank line between the ECO sections of data. For instance, after the third line of ECO 1, there should be a blank line so I can break each section apart of ECO's. It should look like this:
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| 1 | C4520 | A |
| 1 | C5680 | B |
| 1 | C8902 | A |
| 2 | C5000 | B |
| 2 | C5050 | C |
| 2 | C4950 | A |
I have tried putting another row in the table, but it just puts a row after all this dynamic info. I've tried breaks everywhere too. So how do I keep the sections together and then break each section apart?
Andy
