How to format my lists for Excel in Dynamo

I’m trying to export room schedule data to excel, and I’d like to include the headers but I can’t figure out how to combine my list of headers. The way it’s set up now puts the headers in Column A and everything else below that starting in Row 5. I’m a bit of a newb to Dynamo so I don’t have a good understanding of how to manipulate lists.

Bad Headers

Good Headers

James,

To add the column headers to your list use List.AdditemToFront instead of List.Join.

 

James

1 Like

Works like a charm! Thanks!