The information in this article applies to:
SUMMARY
A Web query is a new feature in Microsoft Excel 98 Macintosh Edition that
allows you to retrieve data stored on an intranet or on the Internet. A Web
query can use static parameters, dynamic parameters, or a combination of
both. Queries with static parameters send a query without any input;
queries with dynamic parameters prompt you for input. Regardless of the
type of parameters in the query, the requested information is pulled from
an intranet or Internet site, and the results are placed in a worksheet.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.asp Programmatically Running a Web QueryTo programmatically run a Web query, you must use the Add method of the QueryTables collection. When you use the Add method, it returns a QueryTable object that represents the new query table. The syntax for the Add method is as follows:<expression>.Add(Connection, Destination, SQL)where <expression> is required and returns a QueryTable object. The Connection argument is also required and is the data source for the query table. In the context of Web queries, you can use one of two types of Connection strings: URL or FINDER. When you specify the URL type, you use the complete URL to the server on which you are performing the query (you can copy the third line from any Web query (.iqy) file and use it as the URL). When you specify the FINDER type, you use the complete path to an existing Web query (.iqy) file. Creating a Visual Basic ModuleBefore you can use the examples in this article, you must create a module. To do this, follow these steps:
URL ExamplesStatic Web Query (GET Method):In the following sample that uses static parameters, you are not prompted for the values to send to the server. To create this macro, follow these steps:
Dynamic Web Query (POST Method): In the following sample that uses dynamic parameters, you are prompted for the values to send to the server. Because the parameters are contained in the query, this sample uses the POST method. To create the macro, follow these steps:
FINDER SamplesDynamic Query (GET Method):With the FINDER type of connection, specify the full path to an existing Web query file. This sample uses the GET method because the Web query file, "Microsoft Investor Indices," uses the GET method. That is, the parameters and the URL of the server are on the third line in the file. To create the macro, follow these steps:
Dynamic Query (POST Method): With the FINDER type of connection, specify the full path to an existing Web query file. This example uses the POST method because the Web query file, "Microsoft Investor Stock Quote," uses the POST method. That is, the parameters are on the fourth line, and the URL of the server is on the third line in the file. To create the macro, follow these steps:
For additional information, please see the following article in the Microsoft Knowledge Base: Q157482 XL97: How to Create Web Query (.iqy) Files REFERENCESFor more information about Web queries, click Contents And Index on the Help menu (or on the Balloon Help menu if you are using a version of the Macintosh operating system earlier than 8.0), click the Index button in Microsoft Excel Help, type the following text web, queriesand then click Show Topics. Select the "Get data from a Web source" topic, and click Go To. If you are unable to find the information you need, ask the Office Assistant. Additional query words: XL98
Keywords : kbprg kbdta xlvbahowto xlvbainfo xlquery |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |