亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

C#實現(xiàn)Excel動態(tài)生成PivotTable

 更新時間:2016年04月12日 16:01:08   作者:JackWang-CUMT  
這篇文章主要為大家詳細介紹了C#實現(xiàn)Excel動態(tài)生成PivotTable的相關(guān)方法,感興趣的小伙伴們可以參考一下

Excel 中的透視表對于數(shù)據(jù)分析來說,非常的方便,而且很多業(yè)務(wù)人員對于Excel的操作也是非常熟悉的,因此用Excel作為分析數(shù)據(jù)的界面,不失為一種很好的選擇。那么如何用C#從數(shù)據(jù)庫中抓取數(shù)據(jù),并在Excel 動態(tài)生成PivotTable呢?下面結(jié)合實例來說明。

一般來說,數(shù)據(jù)庫的設(shè)計都遵循規(guī)范化的原則,從而減少數(shù)據(jù)的冗余,但是對于數(shù)據(jù)分析來說,數(shù)據(jù)冗余能夠提高數(shù)據(jù)加載的速度,因此為了演示透視表,這里現(xiàn)在數(shù)據(jù)庫中建立一個視圖,將需要分析的數(shù)據(jù)整合到一個視圖中。如下圖所示:

數(shù)據(jù)源準備好后,我們先來建立一個web應(yīng)用程序,然后用NuGet加載Epplus程序包,如下圖所示:

 在index.aspx前臺頁面中,編寫如下腳本:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="ExcelPivot.Web.index" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>Excel PivotTable</title>
  <link rel="stylesheet" type="text/css" href="css/style.css" /> 
</head>
<body>
  <form id="form1" runat="server">
    <div id="container">

      <div id="contents">

        <div id="post">
          <header>
            <h1> Excel PivotTable </h1>
          </header>
          <div id="metro-array" style="display: inline-block;">
            <div style="width: 230px; height: 230px; float: left; ">

              <a class="metro-tile" style="cursor: pointer; width: 230px; height: 110px; display: block; background-color:#ff0000; color: #fff; margin-bottom: 10px;">
                
                 <input type="button" runat="server" id="Button1" name="btn1" value="回款情況分析" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:230px; height:110px; cursor:pointer;"/>
              
              </a>

              <a class="metro-tile" style="cursor: pointer; width: 230px; height: 110px; display: block; background-color:#ff6a00; color: #fff;">
                 <input type="button" runat="server" id="Button2" name="btn1" value="sampe1" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:230px; height:110px; cursor:pointer;"/>
              </a>
            </div>

            <div style="width: 230px; height: 230px; float: left; margin-left: 10px">

              <a class="metro-tile" style="cursor: pointer; width: 230px; height: 230px; display: block; background-color:#ffd800; color: #fff">
                 <input type="button" runat="server" id="btn1" name="btn1" value="sampe1" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:230px; height:230px; cursor:pointer;"/>
              </a>

            </div>

            <div style="width: 230px; height: 230px; float: left; margin-left: 10px">

              <a class="metro-tile" style="cursor: pointer; width: 230px; height: 110px; display: block; background-color:#0094ff; color: #fff; margin-bottom: 10px;">
                 <input type="button" runat="server" id="Button3" name="btn1" value="sampe1" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:230px; height:110px; cursor:pointer;"/>
              </a>

              <a class="metro-tile" style="cursor: pointer; width: 110px; height: 110px; margin-right: 10px; display: block; float: left; background-color: #4800ff; color: #fff;">
                 <input type="button" runat="server" id="Button4" name="btn1" value="sampe1" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:110px; height:110px; cursor:pointer;"/>
              </a>

              <a class="metro-tile" style="cursor: pointer; width: 110px; height: 110px; display: block; background-color: #b200ff; float: right; color: #fff;">
                 <input type="button" runat="server" id="Button5" name="btn1" value="sampe1" onserverclick="btn1_ServerClick" 
                          style="background-color:transparent; color:white; font-size:16px;float:left; border:0; width:110px; height:110px; cursor:pointer;"/>
              </a>
            </div>

          </div>
        </div>

      </div>
    </div>
  </form>
</body>
  <script src="js/tileJs.js" type="text/javascript"></script>
</html>


其中 TileJs是一個開源的構(gòu)建類似win8 Metro風(fēng)格的javascript庫。

編寫后臺腳本:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OfficeOpenXml;
using OfficeOpenXml.Table;
using OfficeOpenXml.ConditionalFormatting;
using OfficeOpenXml.Style;
using OfficeOpenXml.Utils;
using OfficeOpenXml.Table.PivotTable;
using System.IO;
using System.Data.SqlClient;
using System.Data;
namespace ExcelPivot.Web
{
  public partial class index : System.Web.UI.Page
  {
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    private DataTable getDataSource()
    {
      //createDataTable();
      //return ProductInfo;

      SqlConnection conn = new SqlConnection();
      conn.ConnectionString = "Data Source=.;Initial Catalog=olap;Persist Security Info=True;User ID=sa;Password=sa";
      conn.Open();

      SqlDataAdapter ada = new SqlDataAdapter("select * from v_pm_olap_test", conn);
      DataSet ds = new DataSet();
      ada.Fill(ds);

      return ds.Tables[0];



    }
   
    protected void btn1_ServerClick(object sender, EventArgs e)
    {
      try
      {
        DataTable table = getDataSource();
        string path = "_demo_" + System.Guid.NewGuid().ToString().Replace("-", "_") + ".xls";
        //string path = "_demo.xls";
        FileInfo fileInfo = new FileInfo(path);
        var excel = new ExcelPackage(fileInfo);

        var wsPivot = excel.Workbook.Worksheets.Add("Pivot");
        var wsData = excel.Workbook.Worksheets.Add("Data");
        wsData.Cells["A1"].LoadFromDataTable(table, true, OfficeOpenXml.Table.TableStyles.Medium6);
        if (table.Rows.Count != 0)
        {
          foreach (DataColumn col in table.Columns)
          {
           
            if (col.DataType == typeof(System.DateTime))
            {
              var colNumber = col.Ordinal + 1;
              var range = wsData.Cells[2, colNumber, table.Rows.Count + 1, colNumber];
              range.Style.Numberformat.Format = "yyyy-MM-dd";
            }
            else
            {

            }
          }
        }

        var dataRange = wsData.Cells[wsData.Dimension.Address.ToString()];
        dataRange.AutoFitColumns();
        var pivotTable = wsPivot.PivotTables.Add(wsPivot.Cells["A1"], dataRange, "Pivot");
        pivotTable.MultipleFieldFilters = true;
        pivotTable.RowGrandTotals = true;
        pivotTable.ColumGrandTotals = true;
        pivotTable.Compact = true;
        pivotTable.CompactData = true;
        pivotTable.GridDropZones = false;
        pivotTable.Outline = false;
        pivotTable.OutlineData = false;
        pivotTable.ShowError = true;
        pivotTable.ErrorCaption = "[error]";
        pivotTable.ShowHeaders = true;
        pivotTable.UseAutoFormatting = true;
        pivotTable.ApplyWidthHeightFormats = true;
        pivotTable.ShowDrill = true;
        pivotTable.FirstDataCol = 3;
        //pivotTable.RowHeaderCaption = "行";

        //row field
        var field004 = pivotTable.Fields["銷售客戶經(jīng)理"];
        pivotTable.RowFields.Add(field004);

        var field001 = pivotTable.Fields["項目簡稱"];
        pivotTable.RowFields.Add(field001);
        //field001.ShowAll = false;

        //column field
        var field002 = pivotTable.Fields["年"];
        pivotTable.ColumnFields.Add(field002);
        field002.Sort = OfficeOpenXml.Table.PivotTable.eSortType.Ascending;
        var field005 = pivotTable.Fields["月"];
        pivotTable.ColumnFields.Add(field005);
        field005.Sort = OfficeOpenXml.Table.PivotTable.eSortType.Ascending;

        //data field
        var field003 = pivotTable.Fields["回款金額"];
        field003.Sort = OfficeOpenXml.Table.PivotTable.eSortType.Descending;
        pivotTable.DataFields.Add(field003);

        pivotTable.RowGrandTotals = false;
        pivotTable.ColumGrandTotals = false;
       
        //save file
        excel.Save();
        //open excel file
        string file = @"C:\Windows\explorer.exe";
        System.Diagnostics.Process.Start(file, path);

      }
      catch (Exception ex)
      {
       Response.Write(ex.Message);
      }
    }
  }
}

編譯運行,如下圖所示:

 單擊 [回款情況分析],稍等片刻,會打開Excel,并自動生成透視表,如下圖所示:

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助

相關(guān)文章

  • 深入理解C#中foreach遍歷的使用方法

    深入理解C#中foreach遍歷的使用方法

    在c#中通過foreach遍歷一個列表是經(jīng)常拿用的方法,使用起來也方便,下面這篇文章先給大家介紹了關(guān)于C#中foreach遍歷的使用方法,后面介紹了c#使用foreach注意的一些是,文中通過示例代碼介紹的非常詳細,對大家具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起看看吧。
    2017-08-08
  • C#實現(xiàn)字符串首字母大寫的方法示例

    C#實現(xiàn)字符串首字母大寫的方法示例

    這篇文章主要給大家介紹了關(guān)于利用C#實現(xiàn)字符串首字母大寫的相關(guān)資料,這是在最近工作中遇到的一個需求,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧。
    2018-01-01
  • C#生成比較短的Token字符串

    C#生成比較短的Token字符串

    這篇文章介紹了C#生成Token字符串的方法,文中通過示例代碼介紹的非常詳細。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-06-06
  • C#實現(xiàn)QQ聊天窗口

    C#實現(xiàn)QQ聊天窗口

    這篇文章主要為大家詳細介紹了C#實現(xiàn)QQ聊天窗口,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-02-02
  • C#的內(nèi)存回收代碼

    C#的內(nèi)存回收代碼

    這篇文章主要介紹了C#的內(nèi)存回收代碼,涉及到win32底層操作,具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2014-10-10
  • Unity shader實現(xiàn)頂點動畫波動效果

    Unity shader實現(xiàn)頂點動畫波動效果

    這篇文章主要為大家詳細介紹了Unity shader實現(xiàn)頂點動畫波動效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-04-04
  • 使用C#操作ftp服務(wù)器的示例代碼

    使用C#操作ftp服務(wù)器的示例代碼

    這篇文章主要為大家詳細介紹了使用C#操作ftp服務(wù)器的相關(guān)知識,文中的示例代碼講解詳細,具有一定的借鑒價值,有需要的小伙伴可以參考下
    2024-02-02
  • 深入了解c# 匿名類型

    深入了解c# 匿名類型

    這篇文章主要介紹了c# 匿名類型的相關(guān)資料,文中講解非常細致,代碼幫助大家更好的理解和學(xué)習(xí),感興趣的朋友可以了解下
    2020-07-07
  • C#中判斷、驗證字符串是否為日期格式的實現(xiàn)代碼

    C#中判斷、驗證字符串是否為日期格式的實現(xiàn)代碼

    這篇文章主要介紹了C#中判斷、驗證字符串是否為日期格式的實現(xiàn)代碼,使用DateTime類中自帶的兩個方法實現(xiàn),需要的朋友可以參考下
    2014-08-08
  • C#制作網(wǎng)站掛機程序的實現(xiàn)示例

    C#制作網(wǎng)站掛機程序的實現(xiàn)示例

    本文主要介紹了C#制作網(wǎng)站掛機程序,文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-10-10

最新評論