left$

T

tbone2000

I have a query that ran in the previous version of access but fails in 2007.
The error is with a function - "cusip_wo_dash: [Left$]([cusip_id],6)".
The error message is "Undefined function 'Left$' in expression". I tried
removing the $, but get the same error.
Any help would be appreciated.
 
D

Dennis

Take the square brackets off becuase Left is a function not a field
cusip_wo_dash: Left([cusip_id],6)
 
Top