Hi folks,
I've got a worksheet that calls a web service to get back some XML. It works great but each week I have to change the query string for the service being called to look at the new weeks data.
For example:
I'm currently using: /mydomain.com/mywebservice.asmx/weeklydata?week=1
next week I'll need data for: /mydomain.com/mywebservice.asmx/weeklydata?week=2
Ideally, I'd like the week parameter to be added to the query string, based on the value of a cell. e.g. if A1 = 3, it'll pass week 3 to the web service in the query string.
Anyone know how this can be achieved?
Bookmarks