我有一个 excel 工作表,它由许多表依次组成,比如说大约 5...任何单元格中的颜色,它将报告工作簿的工作表 1 中的工作表名称,即 Sheet<> 某某在其任何一个单元格中包含红色。
到目前为止,我只能确定特定工作表中是否存在红色......但不知道如何在工作表 1 中报告相应的工作表名称。
Sub CheckColor()
Dim Row
For Row = 2 To tsheet.UsedRange.Rows.Count
For chkcol = 1 To Sheet1.UsedRange.Columns.Count
If tsheet.Cells(Row, chkcol).Interior.ColorIndex = 3 Then
'How to report the corresponding sheet name in sheet 1???
End If
Next
Next Row
结束子