help need to find

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

in my table i have column named pno(Text)

i have values like "ER,Jan[76J]/07k"

"ER,Jan[77J]/07k"
if i make find by using Ctrl+F (for the above value)

it says no records found...but actually it is there.
please help me.

Thanks
 
Omit the word Like, and it should find it.

Values inside square brackets have special meaning with the Like Operator.
 
The Find will have a problem with this charecters [ ], But yo can use it in a
query

Select * From TableName Where FieldName = "ER,Jan[76J]/07k"

Or
Select * From TableName Where FieldName = [Please enter string]

You'll be prompt to enter a string, writing the text "ER,Jan[76J]/07k" will
return the desired records
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top