Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Record vs Group Selection Formulas

Status
Not open for further replies.

kimr

Programmer
Jun 12, 2001
16
US
I have a report that groups data based on a formula.

EX: formula-A (if field1 = "XYZ" then "A" else "B")

Group1 grouped by formula-A

I select data with a record selection formula:

((field1 = "XYZ" and field2 = 0) or
(field1 <> "XYZ" and (field2 = 0 or field3 = 0)))

Does this work the same way as using a group selection formula - where I assume you would replace the reference to field1 to the group name or the formula name?

What is the difference as far a efficiency?
 
Group Selection formula aims at allowing you to apply conditions on summary values per group. This is something that a record selection formula can't do.

hth,
- Ido

Visual CUT & DataLink Viewer:
view, e-mail, export, burst, distribute, and schedule Crystal Reports.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top