Can you help,
I am wanting to get data from the wikipedia website relating to countys.
I am able to automatically search wikipedia and load the page concerned using the following code
Function FindCountyName(area)
On Error Resume Next
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate " + area
End Function
The parameter area is passed to the function from a record already existing in a table. The data that I require is held mainly in a table on the website giving data about the town or area concerned e.g. Dewsbury
I understand that I need to address the data using HTMLElements but I have no idea how to code this.
I would be grateful for any help or suggestions to fix my problem
Ian Clegg
I am wanting to get data from the wikipedia website relating to countys.
I am able to automatically search wikipedia and load the page concerned using the following code
Function FindCountyName(area)
On Error Resume Next
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate " + area
End Function
The parameter area is passed to the function from a record already existing in a table. The data that I require is held mainly in a table on the website giving data about the town or area concerned e.g. Dewsbury
I understand that I need to address the data using HTMLElements but I have no idea how to code this.
I would be grateful for any help or suggestions to fix my problem
Ian Clegg