Recently, I have been utilizing exceljs for generating and downloading Excel files. However, I've encountered a challenge in organizing them in groups similar to this: Check out this example of grouping
Is there a way to achieve this using exceljs? I attempted the following:
worksheet.addRows([['Hello'],['Hello']]);
Unfortunately, this method simply stacks the rows without grouping them together.