View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
AA2e72E AA2e72E is offline
external usenet poster
 
Posts: 400
Default Excel, OLEDB and uppercase problem.

"witek" wrote:
select * from [DB$] where UPPER(Field) = "UPPERCASE" does not work.


Try:

SELECT * FROM[DB$] WHERE UCASE(Field) = 'UPPERCASE';

Use single quotes from strings and UCASE instead of UPPER.