diff --git a/src/ifcfm/ifcfm/__init__.py b/src/ifcfm/ifcfm/__init__.py index 36f6679145..70f31c8ef6 100644 --- a/src/ifcfm/ifcfm/__init__.py +++ b/src/ifcfm/ifcfm/__init__.py @@ -256,7 +256,7 @@ class Writer: cell_format = "n" else: cell_format = colours[c - 1] # Adjusted the indexing - cell = worksheet.cell(row=r, column=c, value=col) + cell = worksheet.cell(row=r, column=c, value=str(col)) cell.fill = cell_formats[cell_format] c += 1 r += 1