View Single Post

   
  #2 (permalink)  
Old 02-29-2008, 06:13 AM
Hugo Kornelis
 
Posts: n/a
Default Re: Between Question

On 16 Feb 2005 14:22:39 -0800, pkruti@hotmail.com wrote:

>What am I doing wrong in the statement:
>
>q = "Select * Into etclog_holding from etclog where box# BETWEEN (" &
>Box1 & " and " & Box2 & ")"


Hi pkruti,

Try this instead:

q = "Select * Into etclog_holding from etclog where box# BETWEEN " &
Box1 & " and " & Box2

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Reply With Quote