(VBA) Importing Data from Unique HTML File into Excel -
i want create vba code pulls relevant data want work out of webpage , posts html. did lot of searching, , couldn't find thread similar situation (i don't know html).
here basic structure of html file:
<html><head> <meta http-equiv="content-type" content="text/html; charset=windows-1252"> <meta name="robots" content="index,follow"> <title>"title: abcdefg"</title> </head> <h1>"heading: 2345"</h1> <p> last updated: "last date" </p><p> </p><p> <next></next><table border="3" cellpadding="6" cellspacing="3"> <tbody><tr> <td> <pre> *want data* </pre> </td> </tr> <tr> <td> <pre> *want data* </pre> </td> </tr> <tr> <td> <pre> *want data*
note: relevant data want in locations of "want data. got rid of confidentiality, seems data posted in preformatted table, , need navigate these points of html , extract data. file continues in form, posted first 3 tables needed. each table has data different day, , want extract every table on webpage.
any appreciated.
Comments
Post a Comment