VBA conditional search and marking
The aim is to search in column A for the word "XXX". When the word is found in that column, the next cell should match the word "C".If it doesn't, carry on with the search for "XXX" in the next row, etc. The issue in my code is that it marks all "C"s. In other words, there is no conditional search where XXX=C.
For Each cell In ws.Range("A1:A20").SpecialCells(xlCellTypeConstants)
Select Case cell.Value2
Case "XXX"
col = RGB(202, 225, 255)
Case Else
col = 0
End Select
If col > 0 Then
wb.Activate
cell.Interior.Color = col
For Each cell2 In cell.Offset(, 2).Resize(1).SpecialCells (xlCellTypeConstants)
res = Switch(cell2.Value = "C", vbGreen)
If Not IsNull(res) Then Intersect(Range("B:B, J:J, L:L, N:N, Q:Q"), Rows(cell2.Row)).Interior.Color = CLng(res) '
Next
End If
Next
search conditional cell background-color
add a comment |
The aim is to search in column A for the word "XXX". When the word is found in that column, the next cell should match the word "C".If it doesn't, carry on with the search for "XXX" in the next row, etc. The issue in my code is that it marks all "C"s. In other words, there is no conditional search where XXX=C.
For Each cell In ws.Range("A1:A20").SpecialCells(xlCellTypeConstants)
Select Case cell.Value2
Case "XXX"
col = RGB(202, 225, 255)
Case Else
col = 0
End Select
If col > 0 Then
wb.Activate
cell.Interior.Color = col
For Each cell2 In cell.Offset(, 2).Resize(1).SpecialCells (xlCellTypeConstants)
res = Switch(cell2.Value = "C", vbGreen)
If Not IsNull(res) Then Intersect(Range("B:B, J:J, L:L, N:N, Q:Q"), Rows(cell2.Row)).Interior.Color = CLng(res) '
Next
End If
Next
search conditional cell background-color
add a comment |
The aim is to search in column A for the word "XXX". When the word is found in that column, the next cell should match the word "C".If it doesn't, carry on with the search for "XXX" in the next row, etc. The issue in my code is that it marks all "C"s. In other words, there is no conditional search where XXX=C.
For Each cell In ws.Range("A1:A20").SpecialCells(xlCellTypeConstants)
Select Case cell.Value2
Case "XXX"
col = RGB(202, 225, 255)
Case Else
col = 0
End Select
If col > 0 Then
wb.Activate
cell.Interior.Color = col
For Each cell2 In cell.Offset(, 2).Resize(1).SpecialCells (xlCellTypeConstants)
res = Switch(cell2.Value = "C", vbGreen)
If Not IsNull(res) Then Intersect(Range("B:B, J:J, L:L, N:N, Q:Q"), Rows(cell2.Row)).Interior.Color = CLng(res) '
Next
End If
Next
search conditional cell background-color
The aim is to search in column A for the word "XXX". When the word is found in that column, the next cell should match the word "C".If it doesn't, carry on with the search for "XXX" in the next row, etc. The issue in my code is that it marks all "C"s. In other words, there is no conditional search where XXX=C.
For Each cell In ws.Range("A1:A20").SpecialCells(xlCellTypeConstants)
Select Case cell.Value2
Case "XXX"
col = RGB(202, 225, 255)
Case Else
col = 0
End Select
If col > 0 Then
wb.Activate
cell.Interior.Color = col
For Each cell2 In cell.Offset(, 2).Resize(1).SpecialCells (xlCellTypeConstants)
res = Switch(cell2.Value = "C", vbGreen)
If Not IsNull(res) Then Intersect(Range("B:B, J:J, L:L, N:N, Q:Q"), Rows(cell2.Row)).Interior.Color = CLng(res) '
Next
End If
Next
search conditional cell background-color
search conditional cell background-color
asked Nov 12 '18 at 14:05
Yavuz TopalYavuz Topal
8110
8110
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Edited: See Below
Slightly unsure what you're asking but I think solution is below.
I have used much simpler code but it should be adequate.
For xJ = 1 to 200
If Range("A" & xJ).Value = "XXX" then
Range("A" & xJ).Interior.Color = RGB(202, 225, 255)
If Range("B" & xJ).Value = "C" Then
Range("B" & xJ).Interior.Color = RGB(57, 225, 20)
End If
End if
Next xJ
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263829%2fvba-conditional-search-and-marking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Edited: See Below
Slightly unsure what you're asking but I think solution is below.
I have used much simpler code but it should be adequate.
For xJ = 1 to 200
If Range("A" & xJ).Value = "XXX" then
Range("A" & xJ).Interior.Color = RGB(202, 225, 255)
If Range("B" & xJ).Value = "C" Then
Range("B" & xJ).Interior.Color = RGB(57, 225, 20)
End If
End if
Next xJ
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
add a comment |
Edited: See Below
Slightly unsure what you're asking but I think solution is below.
I have used much simpler code but it should be adequate.
For xJ = 1 to 200
If Range("A" & xJ).Value = "XXX" then
Range("A" & xJ).Interior.Color = RGB(202, 225, 255)
If Range("B" & xJ).Value = "C" Then
Range("B" & xJ).Interior.Color = RGB(57, 225, 20)
End If
End if
Next xJ
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
add a comment |
Edited: See Below
Slightly unsure what you're asking but I think solution is below.
I have used much simpler code but it should be adequate.
For xJ = 1 to 200
If Range("A" & xJ).Value = "XXX" then
Range("A" & xJ).Interior.Color = RGB(202, 225, 255)
If Range("B" & xJ).Value = "C" Then
Range("B" & xJ).Interior.Color = RGB(57, 225, 20)
End If
End if
Next xJ
Edited: See Below
Slightly unsure what you're asking but I think solution is below.
I have used much simpler code but it should be adequate.
For xJ = 1 to 200
If Range("A" & xJ).Value = "XXX" then
Range("A" & xJ).Interior.Color = RGB(202, 225, 255)
If Range("B" & xJ).Value = "C" Then
Range("B" & xJ).Interior.Color = RGB(57, 225, 20)
End If
End if
Next xJ
edited Nov 12 '18 at 23:07
answered Nov 12 '18 at 17:07
Conor TraversConor Travers
262
262
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
add a comment |
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
Thx. It almost fits the purpose.The aim is to mark all "XXX" in one collor and all "C"s in the next cell of "XXX" in green only when XXX and "C" are next to each other.
– Yavuz Topal
Nov 12 '18 at 20:43
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263829%2fvba-conditional-search-and-marking%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown