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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Missing lcase function in query

Status
Not open for further replies.

snerting

Programmer
Oct 20, 2005
52
Hi!

I made a tool in Access (linking tables from Oracle), and some queries use the lcase() (lowercase) function, which works fine when I run it, but it throws an error for other users. They have the same version of office as I do, both with SP2 installed.

The error:
Run-time error '3075'. Function is not available in expressions in query expression 'lcase(table_name)=lcase('Foo')'

Any ideas?
 
As a workaround, try replacing your LCase with StrConv, e.g. replace LCase(table_name) with StrConv(table_name, 2)
 
StrConv gave the same problem. Works for me but not for the other user
 
Check the references in other users Pc:
when in VBE (Alt+F11) menu Tools -> References ...

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top