Help Formating Data to Write to Excel

I have been able to successfully generate a graph to extract data from fabrication piping. I can collect all the data that I want. The issues I have running into is that I am struggling with how to best format the data to push to excel in the format that I am hoping to achieve. the first image below is the current structure of the data I have collected. The second image shows an example of how I would like the data to appear in Excel, and the final image is of the graph in its entirety. For the convenience of everyone willing to aid me, I have also attached my current dyn file. I would greatly appreciate any assistance or advice anyone is willing to offer. Thank you in advance.

FabricationPartsDataExtraction2Excel.dyn (27.2 KB)

Current Data Structure:

Desired Excel Format Example:
Desired Excel

Current Graph:

The Excel nodes take data as a two-dimensional list, ie. a list of lists.
Each sublist represents a row and each item within the sublist represents a column, so basically your data should be sorted by row.

In addition

In a code block (double click on the canvas) type x[0][2] to get item 2 of list 0
Marcel