working with .Document.getElementById() and variables in vba











up vote
0
down vote

favorite












I am trying to select the value from a dropdown box using vba, the code block for the dropdown box is as follows



<input type="text" id="form_autocomplete_input-1542902425322" list="form_autocomplete_suggestions-1542902425322" placeholder="Search keyword or select filter" role="combobox" aria-expanded="false" autocomplete="off" autocorrect="off" autocapitalize="off" aria-autocomplete="list" aria-owns="form_autocomplete_suggestions-1542902425322 form_autocomplete_selection-1542902425322">


If the value of form_autocomplete_suggestions-1542902425322 was static I would use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" however this seems to be a randomly generated numerical value.



I have had a look and it seems I cannot simply add a wildcard in such as .Document.getElementById("form_autocomplete_suggestions-*").Value = "Role: Student"



And as its randomly generated and such a long number it cannot loop through an array of values. so I am unsure on how to solve this issue.










share|improve this question






















  • So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
    – Nathan_Sav
    Nov 22 at 16:29










  • Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
    – Aaran
    Nov 22 at 16:57

















up vote
0
down vote

favorite












I am trying to select the value from a dropdown box using vba, the code block for the dropdown box is as follows



<input type="text" id="form_autocomplete_input-1542902425322" list="form_autocomplete_suggestions-1542902425322" placeholder="Search keyword or select filter" role="combobox" aria-expanded="false" autocomplete="off" autocorrect="off" autocapitalize="off" aria-autocomplete="list" aria-owns="form_autocomplete_suggestions-1542902425322 form_autocomplete_selection-1542902425322">


If the value of form_autocomplete_suggestions-1542902425322 was static I would use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" however this seems to be a randomly generated numerical value.



I have had a look and it seems I cannot simply add a wildcard in such as .Document.getElementById("form_autocomplete_suggestions-*").Value = "Role: Student"



And as its randomly generated and such a long number it cannot loop through an array of values. so I am unsure on how to solve this issue.










share|improve this question






















  • So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
    – Nathan_Sav
    Nov 22 at 16:29










  • Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
    – Aaran
    Nov 22 at 16:57















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to select the value from a dropdown box using vba, the code block for the dropdown box is as follows



<input type="text" id="form_autocomplete_input-1542902425322" list="form_autocomplete_suggestions-1542902425322" placeholder="Search keyword or select filter" role="combobox" aria-expanded="false" autocomplete="off" autocorrect="off" autocapitalize="off" aria-autocomplete="list" aria-owns="form_autocomplete_suggestions-1542902425322 form_autocomplete_selection-1542902425322">


If the value of form_autocomplete_suggestions-1542902425322 was static I would use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" however this seems to be a randomly generated numerical value.



I have had a look and it seems I cannot simply add a wildcard in such as .Document.getElementById("form_autocomplete_suggestions-*").Value = "Role: Student"



And as its randomly generated and such a long number it cannot loop through an array of values. so I am unsure on how to solve this issue.










share|improve this question













I am trying to select the value from a dropdown box using vba, the code block for the dropdown box is as follows



<input type="text" id="form_autocomplete_input-1542902425322" list="form_autocomplete_suggestions-1542902425322" placeholder="Search keyword or select filter" role="combobox" aria-expanded="false" autocomplete="off" autocorrect="off" autocapitalize="off" aria-autocomplete="list" aria-owns="form_autocomplete_suggestions-1542902425322 form_autocomplete_selection-1542902425322">


If the value of form_autocomplete_suggestions-1542902425322 was static I would use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" however this seems to be a randomly generated numerical value.



I have had a look and it seems I cannot simply add a wildcard in such as .Document.getElementById("form_autocomplete_suggestions-*").Value = "Role: Student"



And as its randomly generated and such a long number it cannot loop through an array of values. so I am unsure on how to solve this issue.







excel vba excel-vba






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 16:24









Aaran

33




33












  • So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
    – Nathan_Sav
    Nov 22 at 16:29










  • Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
    – Aaran
    Nov 22 at 16:57




















  • So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
    – Nathan_Sav
    Nov 22 at 16:29










  • Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
    – Aaran
    Nov 22 at 16:57


















So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
– Nathan_Sav
Nov 22 at 16:29




So how many text boxes will there be on the form? You dont have to loop through the array of numbers, you can look at the options on offer beginning with .getElements etc, to get them to a collection and loop those if neccessary. Can you explain a little more in numbers of objects, or paste a screen shot of the page.?
– Nathan_Sav
Nov 22 at 16:29












Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
– Aaran
Nov 22 at 16:57






Hi, not sure what you mean by form? the problem is that the value of the dropdown box changes !image So I cannot use .Document.getElementById("form_autocomplete_suggestions-1542902425322").Value = "Role: Student" as the value of 1542902425322 has now changed to something else.
– Aaran
Nov 22 at 16:57














1 Answer
1






active

oldest

votes

















up vote
1
down vote













You can use css attribute equals value selector syntax with the ^ modifier to say starts with a certain substring. You could also use * instead, which means contains.



[id^='form_autocomplete_input-']


VBA:



ie.document.querySelector("[id^='form_autocomplete_input-']")




You might also use:



[placeholder='Search keyword or select filter']


Which would be:



ie.document.querySelector("[placeholder='Search keyword or select filter']")




As you indicate this needs to be selected you may need:



ie.document.querySelector("[id^='form_autocomplete_input-']").Selected = True




Reference:




  1. CSS attribute selectors






share|improve this answer























  • Did you try this?
    – QHarr
    Nov 23 at 19:34











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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434972%2fworking-with-document-getelementbyid-and-variables-in-vba%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








up vote
1
down vote













You can use css attribute equals value selector syntax with the ^ modifier to say starts with a certain substring. You could also use * instead, which means contains.



[id^='form_autocomplete_input-']


VBA:



ie.document.querySelector("[id^='form_autocomplete_input-']")




You might also use:



[placeholder='Search keyword or select filter']


Which would be:



ie.document.querySelector("[placeholder='Search keyword or select filter']")




As you indicate this needs to be selected you may need:



ie.document.querySelector("[id^='form_autocomplete_input-']").Selected = True




Reference:




  1. CSS attribute selectors






share|improve this answer























  • Did you try this?
    – QHarr
    Nov 23 at 19:34















up vote
1
down vote













You can use css attribute equals value selector syntax with the ^ modifier to say starts with a certain substring. You could also use * instead, which means contains.



[id^='form_autocomplete_input-']


VBA:



ie.document.querySelector("[id^='form_autocomplete_input-']")




You might also use:



[placeholder='Search keyword or select filter']


Which would be:



ie.document.querySelector("[placeholder='Search keyword or select filter']")




As you indicate this needs to be selected you may need:



ie.document.querySelector("[id^='form_autocomplete_input-']").Selected = True




Reference:




  1. CSS attribute selectors






share|improve this answer























  • Did you try this?
    – QHarr
    Nov 23 at 19:34













up vote
1
down vote










up vote
1
down vote









You can use css attribute equals value selector syntax with the ^ modifier to say starts with a certain substring. You could also use * instead, which means contains.



[id^='form_autocomplete_input-']


VBA:



ie.document.querySelector("[id^='form_autocomplete_input-']")




You might also use:



[placeholder='Search keyword or select filter']


Which would be:



ie.document.querySelector("[placeholder='Search keyword or select filter']")




As you indicate this needs to be selected you may need:



ie.document.querySelector("[id^='form_autocomplete_input-']").Selected = True




Reference:




  1. CSS attribute selectors






share|improve this answer














You can use css attribute equals value selector syntax with the ^ modifier to say starts with a certain substring. You could also use * instead, which means contains.



[id^='form_autocomplete_input-']


VBA:



ie.document.querySelector("[id^='form_autocomplete_input-']")




You might also use:



[placeholder='Search keyword or select filter']


Which would be:



ie.document.querySelector("[placeholder='Search keyword or select filter']")




As you indicate this needs to be selected you may need:



ie.document.querySelector("[id^='form_autocomplete_input-']").Selected = True




Reference:




  1. CSS attribute selectors







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 22 at 16:59

























answered Nov 22 at 16:53









QHarr

28.4k81839




28.4k81839












  • Did you try this?
    – QHarr
    Nov 23 at 19:34


















  • Did you try this?
    – QHarr
    Nov 23 at 19:34
















Did you try this?
– QHarr
Nov 23 at 19:34




Did you try this?
– QHarr
Nov 23 at 19:34


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434972%2fworking-with-document-getelementbyid-and-variables-in-vba%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Trompette piccolo

Slow SSRS Report in dynamic grouping and multiple parameters

Simon Yates (cyclisme)