2016-03-31 67 views
0

您好,我嘗試使用不同的顏色格式化多個單元格。因此,當列表中有多個對象時,範圍會發生變化。C#Excel格式化多個單元格的顏色

這裏是我的代碼:

 public void writeExcelFile(SPpowerPlant powerPlant, string sqlServer, string database) 
     { 

      //Path to template 
      String tenplate = @"C:\Users\AAN\Documents\Visual Studio 2015\Projects\PowerPlants\Powerplants\bin\Debug\PROJEKTSTATUS_GESAMT_neues_Layout_template.xlsm"; 

      //open Excel (programm) 
      Excel.Application excelApplication = new Excel.Application(); 

#if DEBUG 
      excelApplication.Visible = true; 
      excelApplication.DisplayAlerts = true; 
#else 
       excelApplication.Visible = false; 
       excelApplication.DisplayAlerts = false; 
#endif 

      //Open a Excel File 
      Excel.Workbook excelWorkbook = excelApplication.Workbooks.Add(tenplate); 
      Excel._Worksheet excelSheet = excelWorkbook.ActiveSheet; 
      SPpowerPlantList powerPlantList = loadProjectsAndComponentsFromSqlServer(sqlServer, database, Convert.ToDateTime(powerPlant.timestamp), powerPlant.note); 

      //Lists for the Excel Sheet 
      List<String> projectName = new List<String>(); //1 
      List<String> phase = new List<String>();  //2 
      List<String> countryshort = new List<String>(); //3 
      List<double> projectShareWeb = new List<double>(); //4 
      List<double> mwWeb = new List<double>();  //5 
      List<double> projectProgress = new List<double>(); //6 
      List<double> mwDeveloped = new List<double>(); //7 
      List<double> yearlyYieldOfWholeProject = new List<double>(); //8 
      List<double> capexWholeProject = new List<double>(); //9 
      List<double> equityAmount = new List<double>(); //10 
      List<double> equityIrr = new List<double>(); //11 
      List<String> cod = new List<String>();  //12 
      List<String> projectmanager = new List<string>(); //13 
      List<String> changes = new List<string>(); //14 
      List<String> technology = new List<string>(); //15 
      List<String> countrylong = new List<string>(); //16 
      List<String> state = new List<string>(); //17 

      //to get the values into the lists from a powerplant 
      foreach (SPpowerPlant powerPlantItem in powerPlantList) 
      { 

       if (powerPlantItem.phase == "Phase 6") 
       { 
        ////Format the Header row to make it Bold and blue 
        excelSheet.get_Range("B4", "O4").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red); 
        //excelSheet.get_Range("A1", "B1").Font.Bold = true; 
       } 

       projectName.Add(powerPlantItem.projectName); //1 
       phase.Add(powerPlantItem.phase); //2 
       countryshort.Add(powerPlantItem.country); //3 
       projectShareWeb.Add(powerPlantItem.projectShareWeb); //4 
       mwWeb.Add(powerPlantItem.mwWeb); //5 
       projectProgress.Add(powerPlantItem.projectProgress); //6 
       mwDeveloped.Add(powerPlantItem.mwDeveloped); //7 
       foreach (SPeconomicIndicator economicIndicatoritem in powerPlantItem.economicIndicators) 
       { 
        yearlyYieldOfWholeProject.Add(economicIndicatoritem.yearlyYieldOfWholeProject); //8 
        capexWholeProject.Add(economicIndicatoritem.capexWholeProject); //9 
        equityAmount.Add(economicIndicatoritem.equityAmount); //10 
        equityIrr.Add(economicIndicatoritem.equityIrr); //11 
       } 
       cod.Add(powerPlantItem.cod.Value.Year.ToString()); //12 
       projectmanager.Add(powerPlantItem.projectManager); //13 
       changes.Add("???"); //14 
       technology.Add(powerPlantItem.technology); //15 
       countrylong.Add(powerPlantItem.country); //16 
       state.Add(powerPlantItem.state); //17 

      } 

      //adding it to the excel sheet 
      int i = 0; 
      for (i = 0; i < powerPlantList.Count; i++) 
      { 

       excelSheet.Cells[i + 4, 2] = projectName[i]; //1 
       excelSheet.Cells[i + 4, 3] = phase[i]; //2 
       excelSheet.Cells[i + 4, 4] = countryshort[i]; //3 
       excelSheet.Cells[i + 4, 5] = projectShareWeb[i]; //4 
       excelSheet.Cells[i + 4, 6] = mwWeb[i]; //5 
       excelSheet.Cells[i + 4, 7] = projectProgress[i]; //6 
       excelSheet.Cells[i + 4, 8] = mwDeveloped[i]; //7 
       excelSheet.Cells[i + 4, 9] = yearlyYieldOfWholeProject[i]; //8 
       excelSheet.Cells[i + 4, 10] = capexWholeProject[i]; //9 
       excelSheet.Cells[i + 4, 11] = equityAmount[i]; //10 
       excelSheet.Cells[i + 4, 12] = equityIrr[i]; //11 
       excelSheet.Cells[i + 4, 13] = cod[i]; //12 
       excelSheet.Cells[i + 4, 14] = projectmanager[i]; //13 
       excelSheet.Cells[i + 4, 15] = changes[i]; //14; 
       excelSheet.Cells[i + 4, 16] = technology[i]; //15 
       excelSheet.Cells[i + 4, 17] = countrylong[i]; //16 
       excelSheet.Cells[i + 4, 18] = state[i]; //17 

      } 

      //Save the excel workbook under a different name 
      excelWorkbook.SaveAs(@"C:\Users\AAN\Documents\Visual Studio 2015\Projects\PowerPlants\Powerplants\bin\Debug\PROJEKTSTATUS_GESAMT_neues_Layout.xlsm", Excel.XlFileFormat.xlOpenXMLWorkbookMacroEnabled, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Excel.XlSaveAsAccessMode.xlShared, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value); 

      excelApplication.Quit(); 

     } 

當我嘗試它絲毫它可以作爲一個expectet燒毛範圍,但是當有隻排與6相多個對象獲得新的顏色。那麼,我該如何更改飛行中的行?因此,階段6的每個值都得到我想要的格式?

所以,任何幫助將是偉大的,並感謝您的時間。

回答

1

你的代碼非常冗長,大部分並不真正與你的問題有關。將相關問題作爲通用代碼示例進行提取會更好,以便其他人可以將代碼複製到其機器中,然後嘗試進行調試。

主要問題是您沒有爲任何位置的單元格分配顏色,除了最初分配範圍B4:O4時。因此,每次遇到階段6時,相同的範圍都會被分配顏色,但不是您即將填充的行。

你可以嘗試這樣一些變化(儘管這是一個有點笨重,而且可能不符合你正在尋找的確切範圍):

List<string> powerPlantList = new List<string> 
    { 
     "test", 
     "blah", 
     "phase 6", 
     "foo", 
     "bar", 
     "phase 6" 
    }; 

    Microsoft.Office.Interop.Excel.Application Excel = new Microsoft.Office.Interop.Excel.Application(); 
    Excel.Visible = true; 
    Workbook wkbk = Excel.Workbooks.Add(); 
    Worksheet sheet = wkbk.ActiveSheet; 


    int initialRow = 4; 
    for (int i = 0; i < powerPlantList.Count; i++) 
    { 
     string s = powerPlantList[i]; 
     string row = (i+ initialRow).ToString(); 
     if (s.Equals("phase 6")) 
     { 
      sheet.get_Range("B" + row, "O"+row).Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red); 
     // This is where you assign the color to the current row range 

     } 
     sheet.Cells[i + initialRow, 4] = s; 

    } 

也似乎你的方法過於複雜解析每個powerPlantItem。您最好製作一個SPowerPlant類型的列表,然後遍歷每個powerPlant以直接填充工作表。您可能不需要創建一系列列表來存儲每個powerPlant的屬性。

+0

thx爲您的答案這個作品真的很棒,我用SPowerPlant試了一下,但沒有讓我工作,但它的劑量問題,因爲我試圖在Excel中得到更好的C#與Excel。所以它對我的工作場所不會有壞處,因爲他們永遠不會看到這一點。 – opelhatza