Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6153205
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:03:18+00:00 2026-05-23T20:03:18+00:00

According to How can columns be set to 'autosize' in Excel documents created with

  • 0

According to How can columns be set to 'autosize' in Excel documents created with NPOI? I did so:

foreach (DataColumn column in dataTable.Columns)
{
   int rowIndex = 0;
   foreach (DataRow row in dataTable.Rows)
   {
      HSSFRow dataRow = sheet.CreateRow(rowIndex);
      dataRow.CreateCell(column.Ordinal).SetCellValue(row[column].ToString());
      rowIndex++;
   }
      sheet.AutoSizeColumn(column.Ordinal);
 }

But it doesn’t work. How to do right?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:03:21+00:00Added an answer on May 23, 2026 at 8:03 pm

    Here is some code that is working for me, using your loops:

        HSSFWorkbook spreadsheet = new HSSFWorkbook();
    
        DataSet results = GetSalesDataFromDatabase();
    
        //here, we must insert at least one sheet to the workbook. otherwise, Excel will say 'data lost in file'
        HSSFSheet sheet1 = spreadsheet.CreateSheet("Sheet1");
    
        foreach (DataColumn column in results.Tables[0].Columns)
        {
            int rowIndex = 0;
            foreach (DataRow row in results.Tables[0].Rows)
            {
                HSSFRow dataRow = sheet1.CreateRow(rowIndex);
                dataRow.CreateCell(column.Ordinal).SetCellValue(row[column].ToString());
                rowIndex++;
            }
            sheet1.AutoSizeColumn(column.Ordinal);
        }
    
        //Write the stream data of workbook to the file 'test.xls' in the temporary directory
        FileStream file = new FileStream(Path.Combine(Path.GetTempPath(), "test.xls") , FileMode.Create);
        spreadsheet.Write(file);
        file.Close();
    

    If it doesn’t work for you then we need to look at the kind of data you’re pushing out, see if there’s a difference that makes a difference there. (I’m assuming that we don’t have a version discrepancy or anything like that).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I set a custom comparator for a specific column in JTable? The
According to this site I can simply write $user = getlogin(); but the group
According to Martin Fowler Something can be public but that does not mean you
According this MSDN article HttpApplication .EndRequest can be used to close or dispose of
According to this question it seems like you can do this for Methods. What
According to this website , you can change to command key sequence used by
how can i reference a display object's coordinates according to it's parent object or
According to the release notes of Eclipse 3.3 you can now join lines together
According to the feedparser documentation , I can turn an RSS feed into a
how i can put multiple buttons in scroll view with according to my requirement?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.