Hi,
I might not be using the method properly…
Please see the attached code and file
Cell B10 stays merged after execution
class Program
{
static void Main(string[] args)
{
var a = new Workbook();
a.Open(@“C:\Gics.xls”, FileFormatType.Excel2003);
var selectedRange = a.Worksheets.GetRangeByName(“Report_Title”);
selectedRange.UnMerge();
a.Save(@“C:\Gics2.xls”);
}
}
Thanks
Emmanuel