Please Help??????????

  • Thread starter Thread starter KRISH
  • Start date Start date
K

KRISH

Hi!
Everybody

I am using [ID] like "M001", "M002", ..... in my Table. I
want to get a report with a criteria say the [ID] from
M053 to M077. Please help how to get the report.

Krish
 
Try criteria similar to

CInt(Right([ID], 3)) Between 53 And 77

or to do this in a query, you would make a calculated field

Field: Expr1:CInt(Right([ID], 3))
Criteria: Between 53 And 77
 

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

Similar Threads

What function? 1
Images TIF error 2114 6
adding 1 to each following cells with a prefix 5
Formula 2
Sr. No in Reports ---- KRISH 3
Control Source Prob.........? 1
Count Prob.........?? 1
Property name 4

Back
Top