먼저 cell을 쉽게 생성하기 위한 함수를 만들었습니다. import ExcelJS from 'exceljs'; export default function ExcelText( worksheet: ExcelJS.Worksheet, cell: string, text: string, fontSize: number, vertical: any, horizontal: any, color: string = '', bold: boolean = false, ) { const cellRef = worksheet.getCell(cell); // 텍스트 추가 cellRef.value = { richText: [ { text: text, font: { size: fontSize, bold, color: { argb: color..