I am developing an Excel Addin! I want to create an union of cells (range) without using Xlapp.Union(recursive way), by just giving couples (x,y) of cells in one string!
I tried using XLapp.Union but it's realy slow, then I am looking for a new method to do the same thing just by giving cellsAdress as string.
I am looking for a function that takes in params a string: something like this ( "A1,B3,C5...") and wich retruns a range!
I tried: Range RE = ExcelWorkbook.ActiveSheet.get_Range(RgEvenString, Type.Missing); where RgEvenString is a string like : "A1,B3,C5..." which throw an exception!!
Can anyone help plz!