I am able to merge cells of the same row using Excel JS Api like this
let B2F2cellRange = sheet.getRange("B2:F2");
B2F2cellRange.merge(true);
But once I try to merge an area like this: sheet.getRange("B2:F3") it fails. Any idea? Is it a limitation of the Api?