Using Crystal Reports XI.
On the database I am using I have a number of boolean fields. I have created a formula field that builds up a string variable based on the contents of the boolean fields like this....
Local StringVar strConditions;
IF {database.boolean1} = TRUE
THEN strConditions := strConditions + "Description1, "
ELSE
strConditions;
IF {database.boolean2} = TRUE
THEN strConditions := strConditions + "Description2, "
ELSE
strConditions;
IF {database.boolean3} = TRUE
THEN strConditions := strConditions + "Description3, "
ELSE
strConditions;
IF {database.boolean4} = TRUE
THEN strConditions := strConditions + "Description4, "
ELSE
strConditions;
This works great.
However I tried to create a similar formula for another task but testing a number of fields for the same value....
Local StringVar strProducts;
IF {database.field1} = 17
or {database.field2} =17
or {database.field3} = 17
or {database.field4} =17
or {database.field5}=17
or {database.field6} =17
or {database.field7} =17
or {database.field8} =17
THEN strDrugs := strProducts + "Product1, "
ELSE strProducts;
IF {database.field1} = 5
or {database.field2} = 5
or {database.field3} = 5
or {database.field4} = 5
or {database.field5}= 5
or {database.field6} = 5
or {database.field7} = 5
or {database.field8} = 5
THEN strDrugs := strProducts + "Product2, "
ELSE strProducts;
IF {database.field1} = 8
or {database.field2} = 8
or {database.field3} = 8
or {database.field4} = 8
or {database.field5}= 8
or {database.field6} = 8
or {database.field7} = 8
or {database.field8} = 8
THEN strDrugs := strProducts + "Product3, "
ELSE strProducts;
When I run this it doesn't work as I'd expect.
Values seem to be allocated OK if one or concurrent IF statements are met, i.e. you can get "Product1, " or "Product 2, " or "Product1, Product2, "
BUT as soon as an ELSE statement is processed then the whole string is set back to the default of an empty string. So even where I had "Product1, Product 2, " before, this gets set to empty string when an ELSE is hit.
I figure that when the value of strProducts is picked up in the ELSE it's picking up the default status of a string varibale rather than the one that's been built up so far. But why does it do it? And why doesn't the same thing happen in my first example?
I have tried:
- Leaving out the ELSE altogether
- ELSE strProducts := strProducts
But they have the same result.
Can anyone help or suggest a better method?
Thanks
On the database I am using I have a number of boolean fields. I have created a formula field that builds up a string variable based on the contents of the boolean fields like this....
Local StringVar strConditions;
IF {database.boolean1} = TRUE
THEN strConditions := strConditions + "Description1, "
ELSE
strConditions;
IF {database.boolean2} = TRUE
THEN strConditions := strConditions + "Description2, "
ELSE
strConditions;
IF {database.boolean3} = TRUE
THEN strConditions := strConditions + "Description3, "
ELSE
strConditions;
IF {database.boolean4} = TRUE
THEN strConditions := strConditions + "Description4, "
ELSE
strConditions;
This works great.
However I tried to create a similar formula for another task but testing a number of fields for the same value....
Local StringVar strProducts;
IF {database.field1} = 17
or {database.field2} =17
or {database.field3} = 17
or {database.field4} =17
or {database.field5}=17
or {database.field6} =17
or {database.field7} =17
or {database.field8} =17
THEN strDrugs := strProducts + "Product1, "
ELSE strProducts;
IF {database.field1} = 5
or {database.field2} = 5
or {database.field3} = 5
or {database.field4} = 5
or {database.field5}= 5
or {database.field6} = 5
or {database.field7} = 5
or {database.field8} = 5
THEN strDrugs := strProducts + "Product2, "
ELSE strProducts;
IF {database.field1} = 8
or {database.field2} = 8
or {database.field3} = 8
or {database.field4} = 8
or {database.field5}= 8
or {database.field6} = 8
or {database.field7} = 8
or {database.field8} = 8
THEN strDrugs := strProducts + "Product3, "
ELSE strProducts;
When I run this it doesn't work as I'd expect.
Values seem to be allocated OK if one or concurrent IF statements are met, i.e. you can get "Product1, " or "Product 2, " or "Product1, Product2, "
BUT as soon as an ELSE statement is processed then the whole string is set back to the default of an empty string. So even where I had "Product1, Product 2, " before, this gets set to empty string when an ELSE is hit.
I figure that when the value of strProducts is picked up in the ELSE it's picking up the default status of a string varibale rather than the one that's been built up so far. But why does it do it? And why doesn't the same thing happen in my first example?
I have tried:
- Leaving out the ELSE altogether
- ELSE strProducts := strProducts
But they have the same result.
Can anyone help or suggest a better method?
Thanks