How can I use a value from a dropdown list as a condition for an if statement in Excel VBA
I'm trying to write a for loop that includes the following if statement:
...For x = 1 To lr:
If Range("G" & 1) = "Complete" Then...
The problem is the string "Complete"
is an option in a dropdown list from data validation in every cell in column G, and my if statement isn't recognizing it as true even if it's selected. How can I get it to recognize a value from a dropdown? Thanks!
excel vba excel-vba
|
show 1 more comment
I'm trying to write a for loop that includes the following if statement:
...For x = 1 To lr:
If Range("G" & 1) = "Complete" Then...
The problem is the string "Complete"
is an option in a dropdown list from data validation in every cell in column G, and my if statement isn't recognizing it as true even if it's selected. How can I get it to recognize a value from a dropdown? Thanks!
excel vba excel-vba
4
Can you edit the question to include the actual code? If it'sIf Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.
– Comintern
Nov 15 '18 at 19:02
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.
– Mathieu Guindon
Nov 15 '18 at 19:48
2
Also,counter
is going to be constant at every iteration of that loop. Did you mean to usex
?
– Mathieu Guindon
Nov 15 '18 at 19:51
You need to set your listbox value as a variable. i.e.Dim lbVal as long
lbVal = Listbox1.Value
. SoFor x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.
– GMalc
Nov 15 '18 at 20:39
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09
|
show 1 more comment
I'm trying to write a for loop that includes the following if statement:
...For x = 1 To lr:
If Range("G" & 1) = "Complete" Then...
The problem is the string "Complete"
is an option in a dropdown list from data validation in every cell in column G, and my if statement isn't recognizing it as true even if it's selected. How can I get it to recognize a value from a dropdown? Thanks!
excel vba excel-vba
I'm trying to write a for loop that includes the following if statement:
...For x = 1 To lr:
If Range("G" & 1) = "Complete" Then...
The problem is the string "Complete"
is an option in a dropdown list from data validation in every cell in column G, and my if statement isn't recognizing it as true even if it's selected. How can I get it to recognize a value from a dropdown? Thanks!
excel vba excel-vba
excel vba excel-vba
edited Nov 16 '18 at 20:07
A. Huggler
asked Nov 15 '18 at 18:55
A. HugglerA. Huggler
12
12
4
Can you edit the question to include the actual code? If it'sIf Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.
– Comintern
Nov 15 '18 at 19:02
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.
– Mathieu Guindon
Nov 15 '18 at 19:48
2
Also,counter
is going to be constant at every iteration of that loop. Did you mean to usex
?
– Mathieu Guindon
Nov 15 '18 at 19:51
You need to set your listbox value as a variable. i.e.Dim lbVal as long
lbVal = Listbox1.Value
. SoFor x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.
– GMalc
Nov 15 '18 at 20:39
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09
|
show 1 more comment
4
Can you edit the question to include the actual code? If it'sIf Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.
– Comintern
Nov 15 '18 at 19:02
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.
– Mathieu Guindon
Nov 15 '18 at 19:48
2
Also,counter
is going to be constant at every iteration of that loop. Did you mean to usex
?
– Mathieu Guindon
Nov 15 '18 at 19:51
You need to set your listbox value as a variable. i.e.Dim lbVal as long
lbVal = Listbox1.Value
. SoFor x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.
– GMalc
Nov 15 '18 at 20:39
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09
4
4
Can you edit the question to include the actual code? If it's
If Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.– Comintern
Nov 15 '18 at 19:02
Can you edit the question to include the actual code? If it's
If Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.– Comintern
Nov 15 '18 at 19:02
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.
Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.– Mathieu Guindon
Nov 15 '18 at 19:48
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.
Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.– Mathieu Guindon
Nov 15 '18 at 19:48
2
2
Also,
counter
is going to be constant at every iteration of that loop. Did you mean to use x
?– Mathieu Guindon
Nov 15 '18 at 19:51
Also,
counter
is going to be constant at every iteration of that loop. Did you mean to use x
?– Mathieu Guindon
Nov 15 '18 at 19:51
You need to set your listbox value as a variable. i.e.
Dim lbVal as long
lbVal = Listbox1.Value
. So For x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.– GMalc
Nov 15 '18 at 20:39
You need to set your listbox value as a variable. i.e.
Dim lbVal as long
lbVal = Listbox1.Value
. So For x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.– GMalc
Nov 15 '18 at 20:39
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09
|
show 1 more comment
0
active
oldest
votes
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%2f53326186%2fhow-can-i-use-a-value-from-a-dropdown-list-as-a-condition-for-an-if-statement-in%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53326186%2fhow-can-i-use-a-value-from-a-dropdown-list-as-a-condition-for-an-if-statement-in%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
4
Can you edit the question to include the actual code? If it's
If Range("G" & counter) = "Complete" Then
, it isn't "coming from the dropdown list" at all.– Comintern
Nov 15 '18 at 19:02
Is the dropdown an ActiveX control? A Forms control? A data validation dropdown? How you'd get the dropdown's value differs very much depending on what type of control you're looking at.
Range("G" & counter)[.Value]
could be how you'd go about checking a cell's content, i.e. when the "dropdown" is merely an in-cell data validation dropdown.– Mathieu Guindon
Nov 15 '18 at 19:48
2
Also,
counter
is going to be constant at every iteration of that loop. Did you mean to usex
?– Mathieu Guindon
Nov 15 '18 at 19:51
You need to set your listbox value as a variable. i.e.
Dim lbVal as long
lbVal = Listbox1.Value
. SoFor x = lbVal to lr
If Range("G" & x) = "Complete"
Change the "Listbox1' to the name of your listbox.– GMalc
Nov 15 '18 at 20:39
@MathieuGuindon It's an in-cell data validation. I was using a counter there for another purpose, but for the context of this question using x makes more sense so I updated it.
– A. Huggler
Nov 16 '18 at 20:09