XL: Can't Apply Number Format to Data Returned by SQL.REQUESTLast reviewed: February 2, 1998Article ID: Q131236 |
The information in this article applies to:
SUMMARYIn Microsoft Excel 5.x or 7.0, if you use the XLODBC.XLA function SQL.REQUEST to return data to your worksheet, you cannot apply a number format to the data by choosing the Number command from the Format menu. Using SQL.REQUEST creates a "link" to the data source and the data is returned as text--thus, the data cannot be reformatted using a number format. This is by design in Microsoft Excel 5.x and 7.0.
MORE INFORMATIONTo work around this limitation, you may use the TEXT function to reformat the data. For example, the following formula returns the text "6/5/1987":
=SQL.REQUEST("DSN=NWind",,,"SELECT Hire_Date FROM Employee WHERE Last_Name = 'Davolio'")This formula can be modified so that the date is displayed in a different Date format. For example, the following formula returns the text "Jun-05- 1987":
=TEXT(SQL.REQUEST("DSN=NWind",,,"SELECT Hire_Date FROM Employee WHERE Last_Name = 'Davolio'"),"mmm-dd-yyyy") |
Additional query words: 5.00 5.00a 5.00c 7.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |