Question i got error on my access query with replace([Items.Des]," ","")

E_Gold

Registered User.
Local time
Today, 21:10
Joined
Sep 18, 2010
Messages
26
i got error on my access query

SELECT CounterG.barcode, CounterG.qty, CounterG.Des, Items.barcode, Items.numH, Items.Des

FROM Items INNER JOIN CounterG ON replace([Items.Des]," ","") = replace([CounterG.Des]," ","") ;

i got error on: replace([Items.Des]," ","")

how to fix it ?
 
Re: i got error on my access query with replace([Items.Des]," ","")

Have you tried without the brackets? They're telling Access that the whole thing is a single field name rather than a table/field.
 

Users who are viewing this thread

Back
Top Bottom