Query problem with function left and len

krzysiekk

Registered User.
Local time
Yesterday, 17:05
Joined
Dec 2, 2009
Messages
74
Hi I try use function left and len,

Function:

Field1: trim(left([Field0],len(Field0)-1))

not working any sugestions?
 
What are you trying to do? And how is it not working?
 
I got information like:
500g
10g
1000g
1g

I want remove g
 
Use this:
IIF(Len([Field0] & "") <> 0, Val([Field0]), [Field0])
 

Users who are viewing this thread

Back
Top Bottom