Crystal 8.5 I have a parameter fields that can be multiple plant codes. I created a formula field to coincide with the plant codes and listed descriptions.
In report header I want disply Plant code along with the description from formula field.
If user select one plant then it works, but if they select multiple plants then it displays the first chosen plants description(Plant Name) not the second in both({@PlantName) positions
I end up with Plants 3 Town1 and 7 Town1.
Should be Plants 3 Town1 and 7 Town2
Plant Description Formula:
If ({?Plant})="3" then stringVar PlantName:= "Town1" else
If ({?Plant})="7" then stringVar PlantName:= "Town2" else
If ({?Plant})="10" then stringVar PlantName:= "Town3"
Report Header Formula
if count({?Plant}) = 2 then "Plants" + ToText (Minimum{?Plant})) + " " +ToText({@PlantName}) + "and" + ToText(Maximum{?Plant})) + " " + ToText({@PlantName})
How could I make the Plant description Formula work for multiple descriptions?
In report header I want disply Plant code along with the description from formula field.
If user select one plant then it works, but if they select multiple plants then it displays the first chosen plants description(Plant Name) not the second in both({@PlantName) positions
I end up with Plants 3 Town1 and 7 Town1.
Should be Plants 3 Town1 and 7 Town2
Plant Description Formula:
If ({?Plant})="3" then stringVar PlantName:= "Town1" else
If ({?Plant})="7" then stringVar PlantName:= "Town2" else
If ({?Plant})="10" then stringVar PlantName:= "Town3"
Report Header Formula
if count({?Plant}) = 2 then "Plants" + ToText (Minimum{?Plant})) + " " +ToText({@PlantName}) + "and" + ToText(Maximum{?Plant})) + " " + ToText({@PlantName})
How could I make the Plant description Formula work for multiple descriptions?