CR8.5 and Oracle
I have a report but the user wants to be able to run it based on a variety of criteria - planner (all or one), part # or order #.
I have a parameter that allows the user to select this:
P1 = Planner, Part No or Shop Order
Then I have a formula that says:
If P1 = "Planner" than planner_code else
If p1 = "Part No" then part_no else
If p1 = "Shop Order" then shop_order
and I can use this for grouping.
I have a second parameter (P2) that allows the user to enter the specific value.
However, I can't figure out how to limit the record selection to this P2 or how to suppress everything except P2. Thanks.
I have a report but the user wants to be able to run it based on a variety of criteria - planner (all or one), part # or order #.
I have a parameter that allows the user to select this:
P1 = Planner, Part No or Shop Order
Then I have a formula that says:
If P1 = "Planner" than planner_code else
If p1 = "Part No" then part_no else
If p1 = "Shop Order" then shop_order
and I can use this for grouping.
I have a second parameter (P2) that allows the user to enter the specific value.
However, I can't figure out how to limit the record selection to this P2 or how to suppress everything except P2. Thanks.