David Johnson
04/21/2025, 3:19 PMcfsimplicity
04/21/2025, 4:35 PMspreadsheet = new spreadsheetCFML.SpreadSheet()
wb = spreadsheet.newXlsx()
data = [ [ "col1", "col2", "col3", "col4", "col5", "col6" ] ]
commonFormat = { bold: true, fgcolor: "yellow" }
spreadsheet
.addRows( wb, data )
.formatCellRange( wb, commonFormat, 1, 1, 1, 6 )
.download( wb, "test" )
cfsimplicity
04/21/2025, 4:35 PMDavid Johnson
04/24/2025, 2:51 PMDavid Johnson
04/24/2025, 2:51 PMDavid Johnson
04/24/2025, 3:00 PMcfsimplicity
04/24/2025, 4:07 PM