Skip to content

Field Properties - Common Tab - Suppress

By checking this checkbox, the object will not be shown in the report output.

Suppression can be conditionally realized by using a function. Click the button on the right side and enter a function. An example of a function on how to suppress a field:

if ({OrderDetail.Qty_Ordered} = 0) then
    return True
else
    return False
end