Formula problem!!

paul wolst

New member
Local time
Today, 15:10
Joined
Aug 22, 2007
Messages
2
how can i get a formula to not display when it returns the value false?
please can anybiody help, im new to crytsal. its vesion 8.5 if it makes any diff.

thanks very much
 
Right click on your section editor and edit. (On the left of the page).
Go to the details section and click on the formula button. (No tick required).
You will need to change the formula to suit your field but something like this should help.

If {yourfieldname} = false then true else false

This will remove the entire row where the value is false.
Basically, all this formula is saying is if the field value is false then suppress the row, otherwise show it.

Hope this helps

Kempes
 
Actually, if you click SUPRESS under the details Section the formula would be:

{yourfieldname} = False

That's all that's necessary as it tells it to suppress if the field name is false.
 
Actually, if you click SUPRESS under the details Section the formula would be:

{yourfieldname} = False

That's all that's necessary as it tells it to suppress if the field name is false.

Same as I'd do, although I'd go for:

Code:
Not {yourfieldname}
 

Users who are viewing this thread

Back
Top Bottom