I want to show a textbox field, if the value is > 0. If the field is 0 (empty) the textbox should be hidden (or not visible).
I tried the following: -In the textbox field (PostageAndPacking) I selected Show or hide based on an epxression. And entered the following expression =IIF(String.IsNullOrEmpty(Fields!PostageAndPacking.Value), True, False)
But I received the error message: Der Hidden-Ausdruck für das Textfeld-Objekt 'PostageAndPacking' verweist auf das Feld 'PostageAndPacking'. Ein Ausdruck für ein Berichtselement kann nur auf Felder verweisen, die sich im aktuellen Datasetbereich oder, wenn der Ausdruck zu einer Aggregatfunktion gehört, im angegebenen Datasetbereich befinden.
What is wrong with my expression? Or what do I have to do to show/hide the field corresponding to the value?
Thanks!