excelVBA设置单元格颜色
发布网友
发布时间:2022-04-24 16:50
我来回答
共1个回答
热心网友
时间:2023-10-23 19:14
Cells(1, 1).Font.ColorIndex = 3 '字的颜色号为3 红色
Cells(1, 1).Interior.ColorIndex = 3 ' 背景的颜色为3 红色
Cells(2, 1).Font.Color = RGB(0, 255, 0) '字的颜色绿色
Cells(2, 1).Interior.Color = RGB(0, 0, 255) '背景的颜色蓝色