cancel
Showing results for 
Search instead for 
Did you mean: 

CR 11 - multiple criteria when selecting records

Former Member
0 Kudos

Hello, I'm fairly novice with CR 11, and I would like to "program" more for some of my reports. I've been trying some things using the select expert but it doesn't always give me the results I want. Here's an example of what I'm trying to do.

Let's say the fields are all in one table: Vehicle, Year, and Cost. I want a report that will only print some vehicles, and only for certain criteria. For example, I want the Fords purchased in 2010 costing more than $20,000; all of the Dodges; and any vehicle older than 2000. In my old Basic programming, that would look something like this:

1 (Get Record)

10 If (Year<2000) Goto 50

20 If (Vehicle=Dodge) Goto 50

30 If (Vehicle=Ford) AND (Cost>20000) Goto 50

40 Goto 1

50 Print Record Info

My troubles arise when I try to "order" my selections, and when I am trying to tie two criteria together (as in line 30). I've had no formal training in CR, none is available in my area and no dollars in my budget, so I rely on Google and forums for help.

Any advice you can give me is appreciated - thank you!

Mike

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

If you want all conditions to be true your select statement will be like this

Year<2000 and

Vehicle=Dodge and

Vehicle=Ford AND Cost>20000

If you want either/or

Year<2000 or

Vehicle=Dodge or

(Vehicle=Ford AND Cost>20000)

Replaciing Year etc with fileds selected from the dialog box in the select expert

YOu can not apply () in the wizrad so you will need to go to the select formula editor to add them

Ian