Compare text crystal report

1

Good afternoon. I would like to know how to mount a formula in the crystal report so that you see, if in the text the word "QTDA", if it exists it signals the whole cell with the red color, if you do not do anything ...

    
asked by anonymous 28.08.2014 / 21:17

1 answer

1

1: Right click on the column and go to "Format Object"

2:Frametab3:Colorsection,whereyouhavetheBackgroundoption,clickthebuttonnexttoFormula

4: Use the following formula below:

If instr({@Campo}, "QTDA") <> 0
   Then crRed 
    
07.10.2014 / 20:05