Hey Everyone,

I'm searching a table for the string
"Top Box".
The record in my table is
"1/2 Top Box"
However, when I loop through the records in my table it doesn't find the record. Here's my code.
Code:
ElseIf InStr(UCase(Box), UCase("Top Box")) > 0 Then
                WhiteText = QOH
                MsgBox Box
And ideas how I should go about searching for the string?