79193622

Date: 2024-11-15 18:55:47
Score: 1
Natty:
Report link

Sheets Set Column Width

Here is a workaround to the sheet problem you've encountered.

function to allow me to manually set the size of columns, or add additional spacing to AutoResizeColumn

Additional Code:

headers.forEach((x, i) => {
  sht.setColumnWidth(i + 1, sht.getColumnWidth(i + 1) + 10)
});

Sample Output Before:

Sample 1

Sample Output After:

Sample 2

Reference:

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lime Husky