728x90
https://colorscripter.com/ |
컬러스크립터 싸이트로 이동
결과 ↓ 드래그하여 긁어진다!! |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Sub If_Color()
Dim n_Row As Integer
n_Row = Range("A3")
Dim Data_Rng, Test_Rng As Range
Set Data_Rng = Range("B11:B" & n_Row + 10)
Range("B11").CurrentRegion.Offset(1, 0). _
Interior.ColorIndex = 0
If Range("J16") = "이상" Then
For Each Test_Rng In Data_Rng
If Test_Rng.Offset(0, 1) = Range("J10") _
And Test_Rng.Offset(0, 3) = Range("J12") _
And Test_Rng.Offset(0, 4) >= Range("K14") Then
Test_Rng.Resize(1, 5).Interior.Color _
= Range("J16").Interior.Color
Else
End If
Next
Else
For Each Test_Rng In Data_Rng
If Test_Rng.Offset(0, 1) = Range("J10") _
And Test_Rng.Offset(0, 3) = Range("J12") _
And Test_Rng.Offset(0, 4) <= Range("K14") Then
Test_Rng.Resize(1, 5).Interior.Color _
= Range("J16").Interior.Color
Else
End If
Next
End If
End Sub
|
cs |
728x90
'■ Computer > ㅡETC' 카테고리의 다른 글
윈도우10 업데이트 끄기 (0) | 2020.09.15 |
---|---|
URL 주소 줄이기 (0) | 2020.08.25 |
바이러스 검사 speechmodeldownload (0) | 2020.07.06 |
프린트 인쇄 스풀 - 프린터 매수를 여러장 지정해도 1장만 나올 때 (2) | 2020.07.01 |
한글 수식 편집기 나누기(최대최소공배수 구하기) 한 칸 더 추가 (0) | 2020.07.01 |