Table Filter Question

  • Thread starter Thread starter Anthony
  • Start date Start date
A

Anthony

I have a table that has access tasks assigned to it by 1 and 0. I have a
seq. of
1001000000001000111 and I want to filter all to list every record that has
a 1 in the fourth line. I tried using *, for example all I got was
***1************, but that gave me every record. Is there any way to get
this done.

Thanks
 
I have a table that has access tasks assigned to it by 1 and 0.  I havea
seq. of
1001000000001000111   and I want to filter all to list every record that has
a 1 in the fourth line.  I tried using *, for example all I got was
***1************, but that gave me every record.  Is there any way to get
this done.  

Thanks

mid(StrBits,4)=1
 
I have a table that has access tasks assigned to it by 1 and 0. I have a
seq. of
1001000000001000111 and I want to filter all to list every record that has
a 1 in the fourth line. I tried using *, for example all I got was
***1************, but that gave me every record. Is there any way to get
this done.

Thanks

* means any string of characters (zero to huge). ? as a wildcard means any
single character. Try

LIKE "???1*"

as a criterion.
 

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