HTML to Excel: How can tell Excel to treat columns as numbers?

前端 未结 7 993
半阙折子戏
半阙折子戏 2020-12-04 18:42

I need to achieve the following when opening an HTML in Excel (Response.contentType=\"application/vnd.ms-excel\") :

  • force Excel to consider conten
7条回答
  •  感情败类
    2020-12-04 18:58

    If you add a CSS Class to your page:

    .num {
      mso-number-format:General;
    }
    .date {
      mso-number-format:"Short Date";
    }
    

    And slap those classes on your TD's, does it work?

    34
    17.0
    12/17/2008 
    

    Update: Additional formatting options from @Aaron.

提交回复
热议问题