Hi,
I have a report that is stored in a list. One of the columns will return multiple entries. I would like to a new line between each entry. Is this possible?
My report code is
![[Image: before3.png]](https://reedcricketclub.co.uk/before3.png)
I would like it to look like this
![[Image: after2.png]](https://reedcricketclub.co.uk/after2.png)
Thanks for the help
I have a report that is stored in a list. One of the columns will return multiple entries. I would like to a new line between each entry. Is this possible?
My report code is
with open(full_report_path, 'w') as f:
writer = csv.writer(f)
writer.writerow(field_names)
# Sets the column order
with open(full_report_path, 'a+', encoding='utf-8', newline='') as output_file:
dict_writer = csv.DictWriter(output_file, order)
dict_writer.writerows(computer_list)At the moment it looks like this![[Image: before3.png]](https://reedcricketclub.co.uk/before3.png)
I would like it to look like this
![[Image: after2.png]](https://reedcricketclub.co.uk/after2.png)
Thanks for the help
