请问想改变EXCEL单元格的字体颜色,或者直接就改变单元格的单元格颜色,应该怎么实现,谢谢

解决方案 »

  1.   

    Border   边框的颜色。   
    Borders   一个区域的所有四条边的颜色。如果四边不是同一种颜色,则   Color   返回的是   0(零)。   
    Font   字体的颜色。   
    Interior   单元格底纹颜色或者图形对象的填充颜色。   
    以上指range对象
      

  2.   

    http://topic.csdn.net/t/20020405/09/624210.html这个帖子里面很全了
      

  3.   

    http://download.csdn.net/source/2346022
      

  4.   

    Range(*).Font.ColorIndex = 3
    Range(*).Interior.ColorIndex = 3
      

  5.   

    '字体(红色)
        Range("E7:G10").Select
        With Selection.Font
            .Color = 255
        End With
    '背景(绿色)
        Range("G18:I22").Select
        With Selection.Interior
            .Color = 5287936
        End With