I'm trying to access the values that appear on the site: link
I was unable to access the values either by direct hyperlink in excel, or by creating a querytable via VBA. Of the two modes the values do not return. Searching the internet, I saw that the values that are entered via JavaScript can not be removed in this way, because the values do not have an ID. Well, looking at the source code I can see how the values are input by a script, but I have no idea how to bring those values from the site to Excel via VBA.
Could anyone help me?
The source code snippet where the values are entered is in bold type. When you go to the site the values will be different from the below values are stock quotes.
<SCRIPT LANGUAGE='JScript'>
tab_A = tab_A + 'TR'
"tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,650</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,640</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,650</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,643</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,641</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,641</TD>';
tab_C = tab_C + '<TD ALIGN="right" CLASS="tabelaConteudo1">13,649</TD>';"
...
</SCRIPT>