Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Hi,
I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#2
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
http://msdn.microsoft.com/library/de...xlWebquery.asp
"Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#3
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Thanks for the input. I need to get a part of a table. Say, table has 10
rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa |
#4
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Hi Mustafa,
Here is simple macro to get data from the web, using web query, and saving the results in a worksheet sURL = "http://support.microsoft.com/default.aspx" sParam = "?scid=fh;en-gb;KBHOWTO" sFullURL = sURL & sParam With Sheets("Sheet1").QueryTables.Add(Connection:="URL; " & sFullURL , _ Destination:=Sheets("Sheet1").Range("A1")) .BackgroundQuery = True .TablesOnlyFromHTML = False .Refresh BackgroundQuery:=False .SaveData = True End With -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#5
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Thanks for the input. I need to get a part of a table. Say, table has 10
rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#6
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
So get it all, and delete the bits you don't want.
-- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... Thanks for the input. I need to get a part of a table. Say, table has 10 rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#7
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
and is there a way to get data from a particular cell of HTML table and put
it in Excel sheet cell Mustafa "Bob Phillips" wrote in message ... So get it all, and delete the bits you don't want. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... Thanks for the input. I need to get a part of a table. Say, table has 10 rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#8
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Not something I do, but I fear you may have to parse and find the bits you
want. It seems easier to me to get the lot and delete the unwanted bits. In your example all you need is Rows("9:10").EntireRow.Delete Rows("1:3").EntireRow.Delete Columns("H:J").EntireColumn.Delete Columns("A:B").EntireColumn.Delete -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... and is there a way to get data from a particular cell of HTML table and put it in Excel sheet cell Mustafa "Bob Phillips" wrote in message ... So get it all, and delete the bits you don't want. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... Thanks for the input. I need to get a part of a table. Say, table has 10 rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
#10
![]()
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.vba
|
|||
|
|||
![]()
Here is the URL from where the data is to get
http://web.fldoe.org/NCLB/report.cfm...ol&district=31 Here how the output Excel layout should be ColA ColB ColC ColD ColE ColF ..... ---------------------------------------------------------------------------- ------------------------------------------- DistrictID SchoolID School grade Number of Students AYP Group Tested 95% of the students? 31% Reading at or above grade level? 38% scoring at or above grade level in Math? Improved performance in Writing by 1%? Increased Graduation Rate3by 1%? Showed 10% improvement in Reading percent not above grade level? Showed 10% improvement in Math percent not above grade level? 2003 Y/N 2003 Y/N 2003 Y/N 2002 2003 Y/N 2001 2002 Y/N 2002 2003 Y/N 2002 2003 Y/N 31 0031 C 1518 N Total4 97 Y 36 Y 57 Y 90 84 N 59 73 Y 64 64 44 43 31 0031 C 1518 N White 96 Y 45 Y 66 Y 93 88 N 62 76 Y 55 55 33 34 31 0031 C 1518 N Black 95 Y 11 N 30 N 82 75 N 41 62 Y 88 89 79 70 31 0031 C 1518 N Hispanic 95 Y 18 N 46 Y 81 67 N 67 67 N 85 82 70 54 31 0031 C 1518 N Asian 31 0031 C 1518 N Am. Ind. 31 0031 C 1518 N Econ. 95 Y 17 N 35 N 82 71 N 40 59 Y 82 83 67 65 31 0031 C 1518 N Disadv. "Don Guillett" wrote in message ... Can you give us the url and the data you want for a test. -- Don Guillett SalesAid Software "Mustafa Ahmad Malik" wrote in message ... and is there a way to get data from a particular cell of HTML table and put it in Excel sheet cell Mustafa "Bob Phillips" wrote in message ... So get it all, and delete the bits you don't want. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Mustafa Ahmad Malik" wrote in message ... Thanks for the input. I need to get a part of a table. Say, table has 10 rows and 10 Col. I need 5x5 table starting from row 4 and col 3 of the original table. Thanks Mustafa "Mustafa Ahmad Malik" wrote in message ... Hi, I'm interested to collect table data from HTML page. Is it possible using excel-vba. If yes, how this can be done. Thanks, Mustafa |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel saving pivot table and data as html files | Excel Discussion (Misc queries) | |||
Pasted HTML Table Data Won't Convert From Text | Excel Discussion (Misc queries) | |||
How can I cut data out of HTML table, into msExcel and just take the data & columns? (but NOT the formatting & URLs!) | Excel Discussion (Misc queries) | |||
Import External Data Non-HTML Table | Excel Discussion (Misc queries) | |||
saving as HTML page | Excel Discussion (Misc queries) |