The information in this article applies to:
- Microsoft Excel 97 for Windows
SUMMARY
Microsoft Excel 97 contains many Internet-related features, including Web
queries, hyperlinks, and .htm file support. However, when you create a
PivotTable, you cannot directly refer to data that is on an Hypertext
Transfer Protocol (HTTP) Web server.
This article includes an example that uses a Web query to retrieve data
from a comma separated value (.csv) file data source on an HTTP Web server.
You can use the retrieved sample data to create a PivotTable.
NOTE: The method included in this article also works for other types of
data sources, however, this article provides an example for only a .csv
data source.
MORE INFORMATION
To use a Web query to retrieve data from a Web-based .csv file, you
must create three files in addition to your .csv data file. These file have
the following extensions: .idc, .htx, and .iqy. Also, you must create a
data source for the .csv file on your Web server.
Creating the .Csv File
To create a sample .csv file, use the following steps:
- Start Microsoft Excel and create a new workbook.
- Type the following data in Sheet1:
A1: Name B1: Amount
A2: Bob B2: 1
A3: Sue B3: 2
A4: Tom B4: 3
A5: Sue B5: 4
A6: Bob B6: 5
- On the File menu, click Save As. In the Save As dialog box, type
Csvsource in the File Name box. Then, click "CSV (Comma
delimited)(*.csv)" in the Save As Type list.
- Click Save. Then, click OK to save only the active sheet.
- Close Csvsource.csv and move it to the final location on your Web
server.
Creating the Data Source for the .Csv File
On the Web server, create a System Data Source Name (DSN) for the .csv
file. The steps to do this may be different on your computer; however, the
process is the same.
To create the DSN, use the following steps:
- In the Control Panel, double-click the ODBC icon.
- In the Data Sources dialog box, click the System DSN tab.
- In the System Data Sources dialog box, click Add.
- In the Add Data Source dialog box, under Installed ODBC Drivers,
click "Microsoft Text Driver (*.txt,*.csv)." Then, click Finish.
- In the ODBC Text Setup dialog box type "CSV_Source" (without the
quotation marks) in the "Data Source Name" box.
- Clear the Use Current Directory check box. Then, click Select
Directory.
- In the Select Directory dialog box, locate and select the folder that
contains Csvsource.csv. Then, click OK.
- Click OK in the ODBC Text Setup dialog box. Then, click OK in the System
Data Sources dialog box.
Creating the .Idc File
An .idc file is a text file that you can create with any text editor. To do
this use the following steps:
- Start Notepad.
- Type the following text in the Notepad document:
Datasource: CSV_Source
Template: Csv_form.htx
DefaultParameters: Name="Name", Amount="Amount"
SQLStatement:
+Select "Name", "Amount"
+From "Csvsource.csv"
+Where "Amount" > 2
- Save this file as Csv_query.idc in the Scripts folder on your Web
server.
- Close the file.
Creating the .Htx File
An .htx file is a text file that you can create with any text editor. To do
this, use the following steps:
- Start Notepad.
- Type the following text in the Notepad document:
<HTML>
<BODY>
<%begindetail%>
<%if CurrentRecord EQ 0 %>
<TABLE>
<TR>
<TH><B>Name</B></TH>
<TH><B>Amount</B></TH>
</TR>
<%endif%>
<TR>
<TD><%Name%></TD>
<TD><%Amount%></TD>
</TR>
<%enddetail%>
</TABLE>
</BODY>
</HTML>
- Save the file as Csv_form.htx in the Scripts folder on your Web server.
- Close the file.
Creating the .Iqy Web Query File
An .iqy file is a text file that you can create with any text editor. To do
this, use the following steps:
- On the computer with Microsoft Excel 97, start Notepad.
- Type the following in the Notepad document:
WEB
1
http://web server name/scripts/csv_query.idc
NOTE: In the HTTP URL, "web server name" is the name of the Web server
that contains the .csv, .idc, and .htx files.
- On the File menu, click Save As.
- Change current directory to the Program Files\Microsoft Office\Queries
folder on your computer, and then click Save.
- In the File Name box type "CSV_Web.iqy" (INCLUDING the quotation marks).
NOTE: If you are using a text editor (for example, Notepad) and you fail
to include the quotation marks in Step 4, the text editor may rename
your file to CSV_Web.iqy.txt.
- Close the file.
Performing the Web Query
To Perform the Web query, use the following steps:
- Start Microsoft Excel 97.
- On the Data menu, point to Get External Data, and then click Run Web
Query.
- Click CSV_Web.iqy, and then click Get Data.
- Click OK in the "Returning External Data to Microsoft Excel" dialog box.
A table of data from the .csv file is returned to the active sheet. Because
the Structured Query Language (SQL) statement in your .idc file restricts
the Amount field to values that are greater than 2, only three records are
returned.
NOTE: This also creates a defined name in the workbook called CSV_Web.
Creating the PivotTable
To create the PivotTable, use the following steps:
- Switch to Sheet2 in the workbook.
- On the Data menu, click PivotTable Report.
- In the "PivotTable Wizard – Step 1 of 4" dialog box, click "Microsoft
Excel list or database" and click Next.
- In the "PivotTable Wizard – Step 2 of 4" dialog box, type
"Sheet1!CSV_Web" (without the quotation marks) in the Range RefEdit box.
Then, click Next.
- In the "PivotTable Wizard – Step 3 of 4" dialog box, drag Name to the
ROW field, and then drag Amount to the DATA field. Click Finish.
A PivotTable that is based on the data in Sheet1 is created.
- Save this workbook as Web_Test.xls.
Updating the PivotTable When Data Changes
To update the PivotTable, use the following steps:
- Change the SQL statement in the .idc file on your Web server to the
following:
SQLStatement:
+Select "Name", "Amount"
+From "Csvsource.csv"
- Save the .idc file.
- On the computer with Microsoft Excel 97, open Web_Test.xls.
- On Sheet1, select any cell in the table of data that is returned by the
Web query. Then, click Refresh Data on the Data menu.
Because you changed the SQL statement in your .idc file, all of the
records in your .csv file are returned to Sheet1.
- Switch to Sheet2 and select any cell in the PivotTable.
- On the Data menu, click Refresh Data.
The PivotTable is updated with the new data that is returned by the
Web query.
For additional information, please see the following articles in the
Microsoft Knowledge Base:
ARTICLE-ID: Q157482
TITLE : XL97: How to Create Web Query (.iqy) Files
ARTICLE-ID: Q162051
TITLE : XL97: How to Specify Dynamic Web Query Parameters
ARTICLE-ID: Q162080
TITLE : XL97: How to Programmatically Perform a Web Query
REFERENCES
For more information about Web queries, click the Index tab in Microsoft
Excel Help, type the following text
web, queries
and then double-click the selected text to go to the "Create a Web Query"
topic.