在Excel 2003中筛选出具有相同背景颜色的所有行?

时间:2011-08-14 12:14:48

标签: excel

现在,我希望在工作表中获得具有相同背景颜色的所有行。如何在Excel 2003中过滤掉具有相同背景颜色的所有行?

更新: Enter image description here

我已将该功能添加到Excel中,该功能位于“用户定义”类别下的插入功能中。

但我不知道如何使用它。现在,如果我想要显示与sheet1上A1:I1具有相同背景颜色的所有数据,我该怎么做?

1 个答案:

答案 0 :(得分:4)

在模块中,您可以添加此功能:

Function CellColour(rngIn As Range) As Long
Application.Volatile True
CellColour = rngIn(1).Interior.ColorIndex
End Function

然后你把它当成一个原生公式

=CellColour(A1)

将其应用到您需要的范围,并过滤公式返回的数字。