Mesclando células no Excel usando o Apache POI

Existe alguma outra maneira de mesclar células no Excel usando a biblioteca Apache POI?

Eu estava tentando usar o seguinte, mas não está funcionando

// selecting the region in Worksheet for merging data
CellRangeAddress region = CellRangeAddress.valueOf("A" + rowNo + ":D"
            + rowNo);

// merging the region
sheet1.addMergedRegion(region);

questionAnswers(4)

yourAnswerToTheQuestion