I'm trying to create a parameter field, where the user should be inputting a 1,2,3, or 4. However, they may also leave it Null to include all of the above.
The way we currently have it written is like so:
(IF {?Minimum Class} <= "4"
then
{Equipment.Class}<= {?Minimum Class}
else
{Equipment.Class} <= "5"
...which says "If the parameter entered is <= 4, then leave the 'minimum class' as the parameter entered. Otherwise, "minimum class' is <= 5.
Trouble is, when the user doesn't enter a number (which means they want to include everything), we get inaccurate data...how would I write the last part of this?:
(IF {?Minimum Class} <= "4"
then
{Equipment.Class}<= {?Minimum Class}
else
"INCLUDE EVERYTHING!!!"
The way we currently have it written is like so:
(IF {?Minimum Class} <= "4"
then
{Equipment.Class}<= {?Minimum Class}
else
{Equipment.Class} <= "5"
...which says "If the parameter entered is <= 4, then leave the 'minimum class' as the parameter entered. Otherwise, "minimum class' is <= 5.
Trouble is, when the user doesn't enter a number (which means they want to include everything), we get inaccurate data...how would I write the last part of this?:
(IF {?Minimum Class} <= "4"
then
{Equipment.Class}<= {?Minimum Class}
else
"INCLUDE EVERYTHING!!!"