3

我需要在 excel 中用我能做到的金色突出显示错误数据的单元格。但是一旦用户更正数据并单击验证按钮,内部颜色应该恢复为原始内部颜色。这没有发生。请指出错误。请建议确切的代码,因为我尝试了很多东西,但到目前为止没有任何效果。

private void ValidateButton_Click(object sender, RibbonControlEventArgs e)
      {
          bool LeftUntagged = false;
          Excel.Workbook RawExcel = Globals.ThisAddIn.Application.ActiveWorkbook;
          Excel.Worksheet sheet = null;
          Excel.Range matrix = sheet.UsedRange;
          for (int x = 1; x <= matrix.Rows.Count; x++)
          {
              for (int y = 1; y <= matrix.Columns.Count; y++)
              {
                  string CellColor = sheet.Cells[x, y].Interior.Color.ToString();
                  if (sheet.Cells[x, y].Value != null && (Excel.XlRgbColor.rgbGold.Equals(sheet.Cells[x, y].Interior.Color) || Excel.XlRgbColor.rgbWhite.Equals(sheet.Cells[x, y].Interior.Color)))
                  {
                      sheet.Cells[x, y].Interior.Color = Color.Transparent;
                  }
              }
          }
      }
4

4 回答 4

1

我实现了我想要做的事情。这是解决方案:

private void ValidateButton_Click(object sender, RibbonControlEventArgs e)
      {
          bool LeftUntagged = false;
          Excel.Workbook RawExcel = Globals.ThisAddIn.Application.ActiveWorkbook;
          Excel.Worksheet sheet = null;
          Excel.Range matrix = sheet.UsedRange;
          for (int x = 1; x <= matrix.Rows.Count; x++)
          {
              for (int y = 1; y <= matrix.Columns.Count; y++)
              {
                  string CellColor = sheet.Cells[x, y].Interior.Color.ToString(); //Here I go double value which is converted to string.
                  if (sheet.Cells[x, y].Value != null && (CellColor == Color.Transparent.ToArgb().ToString() || **CellColor == Excel.XlRgbColor.rgbGold.GetHashCode().ToString()**))
                  {
                      sheet.Cells[x, y].Interior.Color = Color.Transparent;
                  }
              }
          }
      }
于 2013-08-14T12:35:44.170 回答
0

做到这一点的方法是使用ColorIndex. 可以在使用 ColorIndex 属性为 Excel 2007 工作表添加颜色中找到完整的值列表。

在代码中,只需使用上面链接中图 1 中的索引即可。

// For example
sheet.Cells[x, y].Interior.ColorIndex = 3; // Set to RED

如果您需要比较颜色,您可以简单地比较ColorIndex

于 2013-08-13T14:27:58.120 回答
0

尝试:

sheet.Cells[x, y].Interior.ColorIndex =  -4142;  //xlNone
于 2013-08-13T14:20:50.580 回答
0

(对于评论来说太大了)
因此,您希望根据单元格的内容与其他单元格的内容相比,为其着色。为了实现这一点,您创建了一个宏,您需要启动它才能查看其结果。

相反,我建议您使用条件格式。它完全符合您的要求,不再需要启动宏,这一切都会立即发生。

您能否举一个您所谓的“错误数据”的示例,我可能会尝试找到配置条件格式所需的条件。

于 2022-02-03T08:48:49.287 回答