'목록하단 광고 치환자(withSeok)
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Sub CHA_Color_Gray()
' 테두리ㅡ셀색ㅡ회색 매크로
'Application.ScreenUpdating = False
 
Dim rngK As Range
    
    For Each rngK In Selection
        If rngK <> "" Then
            With rngK.Interior
                    '.Pattern = xlSolid
                    .PatternColorIndex = xlAutomatic
                    '.ThemeColor = xlThemeColorDark1
                    .TintAndShade = -0.149998474074526
                    '.PatternTintAndShade = 0
            End With
        Else
        End If
        
    Next
 
   
'Application.ScreenUpdating = True
End Sub
 
cs
728x90

+ Recent posts