Say for example i contain data in sheet from A1:C3
By performing some macro Operation in excel sheet, after the last column(C) and last row(3rd) of my excel data, there is a new data in(D column) and new data in(4th) row will be produced by macro operation and both of the new column and row are hidden in my sheet.
i want to unhide both of them.
How to do it?
Dim xlApp As microsoft.Office.Interop.excel.Application
Dim wb As microsoft.Office.Interop.Excel.Workbook
Dim ws As microsoft.Office.Interop.excel.worksheet
xlApp = New Microsoft.office.Interop.Excel.Application
wb = xlApp.Workbooks.Open(in_Filename)