Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert to Excel Query

Status
Not open for further replies.

Johnny42

Technical User
Jul 13, 2004
127
CA
I can import external data with a query.
However I cannot figur out if it is possible to query numeric values only ..
can this be done in an excel query ?
I tried to build in Access...works...however cannot reproduce in excel :(
 
Johnny,

What works in Access that does not work in MS Query?

Skip,

Want to get great answers to your Tek-Tips questions? Have a look at faq222-2244
 
Well....how would I select numeric values only with a query from excel?

 
Johnny said:
I tried to build in Access...works...however cannot reproduce in excel
How did you build it in Access that cannot be done in Excel?

Skip,

Want to get great answers to your Tek-Tips questions? Have a look at faq222-2244
 
I built this and got the resulting sql :
SELECT ICITEM.DESC, ICITEM.ITEMNO
FROM ICITEM
WHERE (((IsNumeric([ICITEM]![ITEMNO]))=True));


How can I interpret this in an excel query ?
or how can I buil this from the excel query wizard and get only numeric values ?
 
Edit you query -- Data/Get External Data/Edit Query --

Hit the SQL Icon.

Insert the IsNumeric function in the Where clause

File/Return results to Excel

:)

Skip,

Want to get great answers to your Tek-Tips questions? Have a look at faq222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top