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!

option to print a GROUP 1

Status
Not open for further replies.

ianholmes

Programmer
Mar 24, 2001
61
GB
Is it possible to interrogate a parameter (Crystal XI) so that if it is set, then a Group is used, but it if it is not set, then there is no Group ?
 
You should be using forum149 or forum767.

Create a parameter {?Group on fieldA} with Options of "Yes" and "No". Then create a formula:

if {?Group on fieldA} = "Yes" then
{table.fieldA}

Insert a group on this formula.

-LB
 
Thanks LB.
Rather than reposting to the other forums you are suggesting, can you advise what you mean by {table.fieldA} ?
FieldA in my example is from an SP.
I have coded
if {?Group on fieldA} = "Yes" then
{SP.fieldA}
End If
but get a syntax error.
Many thanks
 
I have implemented the above suggestion, and it works fine.
Many thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top