Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to do the following using c# code:

  1. Hide some rows in excel.
  2. Clear all data and formats in excel sheet.
  3. Put other data to excel sheet.

I would like the hidden rows still remain hidden. Is it possible?

Thank You!

share|improve this question
1  
Hidden would remain hidden...Yes...but what about the data in hidden rows? Would you want to preserve them? because when you clear all data & format the data for the hidden rows is also gone..is it fine? – Arif Eqbal May 10 '12 at 7:40
I need to clear the data in hidden cells as well – Sergey Kucher May 10 '12 at 9:05

3 Answers

up vote 1 down vote accepted

Here's a sample code that can get you going....

        //Create an Excel App
        Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();

        Microsoft.Office.Interop.Excel._Workbook xlWorkBook = null;
        Microsoft.Office.Interop.Excel._Worksheet xlWorksheet;

        //Open a Workbook
        xlWorkBook = xlApp.Workbooks.Open(@"d:\test.xlsx");
        xlWorksheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Sheets[1];

        //My Workbook contains 10 rows with some data and formatting
        //I Hide rows 3, 4 & 5
        Microsoft.Office.Interop.Excel.Range hiddenRange = xlWorksheet.get_Range("A3:C5");
        hiddenRange.EntireRow.Hidden = true;

        //Get the entire sheet and Clear everything on it including data & formatting
        Microsoft.Office.Interop.Excel.Range allRange = xlWorksheet.UsedRange;
        allRange.Clear();


        //Now Add some new data, say a Title on the first cell, and some more data in a loop later
        xlWorksheet.Cells[1, 1] = "Title";

        for (int i = 6; i < 10; i++)
        {
            xlWorksheet.Cells[i, 1] = i.ToString();
        }

        xlApp.Visible = true;

Thats it....

share|improve this answer

I've had great results using ClosedXML to manipulate excel spreadsheets.

While I haven't tried your case I've done similar things. In my case I put my private data into a new worksheet and hide that, which ClodedXML made simple.

share|improve this answer

Store them in a variable and hide them again after you have populated excel with data.

share|improve this answer
I will need to to it if there will not be another solution, by the way can you publish please how to do it, because I didnt succeed , I succeed to get all the hidden columns but I do not know how to get the column name from the range object. – Sergey Kucher May 10 '12 at 15:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.