XL98: External Data Range Property Not Saved with Workbook

Last reviewed: February 19, 1998
Article ID: Q181286
The information in this article applies to:
  • Microsoft Excel 98 Macintosh Edition

SYMPTOMS

In Microsoft Excel 98 Macintosh Edition, the "Overwrite existing cells with new data, clear unused cells" option in the External Data Range Properties dialog box is not retained when you save and close a workbook. Instead, the "Insert entire rows for new data, clear unused cells" option is selected.

CAUSE

This problem occurs in a workbook that already contains external data ranges.

WORKAROUND

Microsoft 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 engineers 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/supportnet/refguide/default.asp

To use one or more external data ranges in a workbook and use the "Overwrite existing cells with new data, clear unused cells" option, create and run a Visual Basic for Applications macro to reset the option each time you open the workbook. To do this, follow these steps:

  1. Write down the name of the worksheet that contains the external data range (for example, "Sheet1").

  2. CONTROL-click any cell in the external data range, and click Data Range Properties on the shortcut menu. Write down the name you see in the Name box (for example, "ExternalData1"), and then click Cancel.

  3. On the Tools menu, point to Macro, and then click Visual Basic Editor

    -or-

    Press OPTION+F11.

  4. In the Project window, double-click ThisWorkbook for the workbook that contains the external data range.

  5. In the Code window, click Workbook in the Object list. In the Procedure list, click Open.

    The "Private Sub Workbook_Open()" Sub procedure appears.

  6. In the Sub procedure, type the following line of code

          Sheets("x").QueryTables("y").RefreshStyle = xlOverwriteCells
    

    where "x" is the name of the worksheet you wrote down in step 1, and "y" is the name of the data range you wrote down in step 2.

  7. On the File menu, click "Close and Return to Microsoft Excel."

For each external data range that will use the "Overwrite existing cells with new data, clear unused cells" option, repeat these steps. When you are finished, save the workbook.

When you open the workbook, the data ranges are formatted correctly.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

In Microsoft Excel 98 Macintosh Edition, you can use the Run Web Query, Run Database Query, and Create New Query commands (on the Get External Data submenu) to retrieve external data. When you retrieve external data and the number of rows in the external data range changes, you can format the external data range in the worksheet in one of three ways. To do this, follow these steps:

  1. CONTROL-click any cell in the data range. On the shortcut menu, click Data Range Properties.

  2. Under Data Layout, select one of the following three options, depending on how you want Microsoft Excel to behave when data is updated:

        - Insert cells for new data, delete unused cells
    

        - Insert entire rows for new data, clear unused cells
    

        - Overwrite existing cells with new data, clear unused cells
    

  3. Click OK.

If you click either of the first two options, the option is saved with the workbook. However, if you click the third option (to overwrite cells), it reverts to the second option (to insert entire rows) when you close the workbook.


Additional query words: XL98
Keywords : kbui kbdta kbdtacode
Version : MACINTOSH:98
Platform : MACINTOSH
Issue type : kbprb
Solution Type : kbworkaround


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 19, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.