elsenorjose
Technical User
Hello everyone,
I am creating a crosstab to display whether certain requirements are optional or required for certain job roles. My rows are the requirements, my column headers are the job roles and what I'm trying to display in the details is the result of a formula to convert boolean values to a letter.
Is this possible? I've tried using Maximum as the summary operation but all I get back are the 'R's.
I am using Crystal Reports XI.
Thank you.
I am creating a crosstab to display whether certain requirements are optional or required for certain job roles. My rows are the requirements, my column headers are the job roles and what I'm trying to display in the details is the result of a formula to convert boolean values to a letter.
Code:
If table.must_have = 0 Then 'O'
Else If table.must_have = 1 then 'R'
Else 'N/A'
Is this possible? I've tried using Maximum as the summary operation but all I get back are the 'R's.
I am using Crystal Reports XI.
Thank you.