MS Excel Help
|
2013-04-02, 19:47
(This post was last modified: 2013-04-02 19:51 by Ash.)
Post: #1
|
|||||||
|
|||||||
MS Excel Help
Hello Guys!
I'm trying to run a few web queries through an excel spreadsheet. I've got it so I can enter criteria in cell A1, and using VB it will return data I want in the cells underneath. However I have got various sheets in the work book, I would like to be able type the criteria in one single cell and it copy's it to 1 other cell on each sheet. I've tried to do !Sheet1:A1 and it copy's it fine, however VB does not count it as having any value in it as its simply a copy and paste. The only work around I have found is to run a macro to copy and paste into all the cells, but I'd rather not use macros. Has anyone got any ideas? Thanks! Private Sub Worksheet_Change(ByVal Target As Range) If Not Application.Intersect(Target, Range("A1")) _ Is Nothing Then With QueryTables(1) .Connection = "URL;http://www.myurlhere.co.uk/" _ & "page.php?page=" & _ Range("A1").Value .Refresh End With End If End Sub That's the VB code I currently use if its any help. |
|||||||
2013-04-02, 19:59
Post: #2
|
|||||||
|
|||||||
RE: MS Excel Help
I have no idea, it's been a while since I used Excel :/
Wouldn't it be easier to make a web-based solution to scrape the webpages instead? |
|||||||
|
|||||||
2013-04-02, 21:46
Post: #3
|
|||||||
|
|||||||
RE: MS Excel Help
have you tried something like this:
define a worksheet variable and use the "for each" command to simply set the values in the relative worksheet? |
|||||||
|
|||||||
2013-04-03, 14:14
Post: #4
|
|||||||
|
|||||||
RE: MS Excel Help
*offtopic junk removed*
|
|||||||
|
|||||||
2013-04-03, 15:07
Post: #5
|
|||||||
|
|||||||
RE: MS Excel Help
I worked it out anyway now, just forgot to update thread
Cheers |
|||||||
« Next Oldest | Next Newest »
|
Possibly Related Threads... | |||||
Thread: | Author | Replies: | Views: | Last Post | |
Excel Spreadsheet Requests | Ash | 2 | 2,922 |
2014-03-25 16:45 Last Post: Audiojack |
|
Any advanced Microsoft Excel users? | Ash | 3 | 3,956 |
2014-02-24 17:58 Last Post: Toni |
User(s) browsing this thread: 3 Guest(s)
Powered By MyBB, © 2002-2024 MyBB Group