I use an expression in a TextBox:
Fields!myField.Value/10
myField is a type of integer in SqlServer.
If the value in myField is null, the expression "myField.Value/10" will display 0,
I want the expression to display empty if myField is null.
How can I do that

Display empty instead of 0
theflu
SW Skeen
=iif(Fields!myField.Value/10=0, "", Fields!myField.Value/10).
Good Luck.
Long