L
Louverril
This works fine:
rs.FindFirst "[Item_Desc] = '" & Me![ItemList] & "'"
unless the Item Description contains an apostrophy
So hilary's book is trying to match hilary's book on the item list.
I have tried variations on:
strQuote = Chr$(34)
rs.FindFirst " & strQuote & [Item_Desc] & strQuote = '" & strQuote &
Me![ItemList] & strQuote & "'"
Trying to follow a previous posting on a forum but I can't make sence of it.
How can I cope with this. I do not want to replace the apostrophies on input.
Thanks Lou
rs.FindFirst "[Item_Desc] = '" & Me![ItemList] & "'"
unless the Item Description contains an apostrophy
So hilary's book is trying to match hilary's book on the item list.
I have tried variations on:
strQuote = Chr$(34)
rs.FindFirst " & strQuote & [Item_Desc] & strQuote = '" & strQuote &
Me![ItemList] & strQuote & "'"
Trying to follow a previous posting on a forum but I can't make sence of it.
How can I cope with this. I do not want to replace the apostrophies on input.
Thanks Lou