Hello all,
I'm having a problem writing the last line for my where clause for my recordsource for access. I will omit the SELECT and FROM clauses because i know they work.
My where clause works up to this point:
Code:
" WHERE deceasedHolder.[Company ID] ='" & Me!Company_ID & "'" & _
" AND deceasedHolder.[Next Put Date] = #" & Me!txtPutDate & "#" & _
The last "AND" should compare two values from the table deceasedHolder, which are deceasedHolder.[Quantity Approved] and deceasedHolder.Quantity, and return the fields where quantity approved is less than quantity. This is what I put down, but it is generating the error "You cancelled the previous operation.
Code:
" AND deceasedHolder.[Quantity Approved] < deceasedHolder.Quantity;"
Any and all help is greatly appreciated.
Mark