EXCEL 2010 如何用不同颜色表示出A和B的大小,等于用绿色,大于用红色,小于用黄色,需要批量复制!

如题所述

你可以这样:选中单元格——开始——样式——条件格式——突出显示单元格规则……下边你懂的。为了申请优质答案,上图:

温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-04-08

用 宏命令

Sub tc()

Dim i


 For i = 1 To ActiveSheet.UsedRange.Rows.Count


  If Cells(i, 1) = Cells(i, 2) And Cells(i, 2) <> "" Then


    Cells(i, 2).Select

    With Selection.Interior

        .Pattern = xlSolid

        .PatternColorIndex = xlAutomatic

        .Color = 5287936

        .TintAndShade = 0

        .PatternTintAndShade = 0

    End With

  End If

  If Cells(i, 1) < Cells(i, 2) Then

    Cells(i, 2).Select

    With Selection.Interior

        .Pattern = xlSolid

        .PatternColorIndex = xlAutomatic

        .Color = 255

        .TintAndShade = 0

        .PatternTintAndShade = 0

    End With

   End If

  If Cells(i, 1) > Cells(i, 2) Then

    Cells(i, 2).Select

    With Selection.Interior

        .Pattern = xlSolid

        .PatternColorIndex = xlAutomatic

        .Color = 65535

        .TintAndShade = 0

        .PatternTintAndShade = 0

    End With

    End If

   Next

End Sub


本回答被提问者和网友采纳
第2个回答  2014-04-08
=IF(B1=A1,"绿色",IF(B1>A1,"红色","黄色")),你用这个公式,虽然不能直接填充颜色,但是你可以通过筛选来选择相应颜色再填充也是可以的。比如你筛选红色,就全部填充红色的颜色。以此类推
第3个回答  2014-04-08
条件格式
新建规则
=B1=A1 格式 绿色
=B1>A1 格式 红色
=B1<A1 格式 黄色
相似回答