[Excel-VBA] Cell 색상 설정 - ColorIndex (1) 썸네일형 리스트형 반응형 ㅜ [Excel-VBA] Cell 색상 설정 - ColorIndex, RGB VBA 를 이용해서 색상을 설정하는 방법은 아래와 같이 ColorIndex 를 이용하거나, RGB값을 이용하는 방법이 있다 Cells(1,1).Interior.ColorIndex = 1 'ColorIndex 이용 Cells(1,1).Interior.Color =RGB(255,255,255) 'RGB값 이용 Color Index 색상을 hex 값과 RGB 값으로 확인하는 소스는 아래와 같다 Sub ColorIndex() Dim i As Integer Dim aCell As Range Dim tmp As String For i = 1 To 56 Cells(i, 1) = "ColorIndex : " & i Cells(i, 1).ColumnWidth = 18 Cells(i, 2).Interior.ColorInd.. 이전 1 다음