We are transitioning from using Microsoft’s Excel libraries in .NET to Aspose. Is there a way I can dynamically modify a range’s size within a worksheet?
Code using Microsoft library:
xlSheet.Range(“A2”).Resize(oDTView.Rows.Count, oDTView.Columns.Count)
I’m trying to do something similar so that when I import a datatable, and refresh my pivot tables, it will pick up all the data.
Thanks