Formating column size in Excel with using Export-CSV

I was thinking this would be simple but I cannot find anything on how to set the size of a column with the Export-CSV

Can I set column size using Export-Csv? There does not seem to be a property for this and this seems like something that you would want to be able to do.

Thank you

You don’t actually set column sizes in a CSV. The CSV format doesn’t “retain” sizing - columns aren’t fixed-length in CSV.

you can use the importexcel module to get some of this functionality and export to excel spreadsheets.