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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to make "Can Grow" conditional on another field>

Status
Not open for further replies.

boardburner

Technical User
Dec 23, 2003
77
US
The simplicity of this is killing me, i am not sure if I am missing something here or not.
I have a report of part numbers (field 1) and their descriptions (field 2)using crystal 2013.
If the part number revision is ["Obsolete"= true] I only want the first/single line of its description to show.
If the part number is ["Obsolete" = False] can grow to unlimited.
How will "Can Grow" be toggled based on the conditional of another report field?

Thanks in advanced
 
Right click on the field that can grow. Click on Format. In the Common tab find Can Grow on the left. Follow over to the right to the X+2 and click on it. Adapt this code and paste it in there.
If "Obsolete"= true Then
False
Else
True

That tells it not to grow if the part is obsolete.
I hope that helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top