views:

470

answers:

1

Formula scenario: Retrieved data has a status column which its values is (-1, 0, 1, 2, 3), I'd like to use formula to display string based on these values. I use Display String, but it doesn't work.

How could I write a formula to work for each cell in crosstab?

Any suggestions?

A: 

Formulas are pretty easy to write. Just create a simple if/if else/else than statement:

if {TABLE.COLUMN} = 1 then 'One' else 'Unknown'

And use that within the cross tab.

rcl