Hi,
I would like to represent values as blank field if numeric value is zero but I could not find any appropriate picture.
Is this possible?
TextFormat - Zero value
TextFormat - Zero value
Hello,
You can use following expression:
Thank you.
You can use following expression:
Code: Select all
{MyDataSource["MyField"] == null || MyDataSource["MyField"] == DBNull.Value ? "" : MyDataSource.MyField.ToString()}
TextFormat - Zero value
There's also a property on the text component called HideZeros. Setting this to true will hide the value if it is the number zero.
TextFormat - Zero value
Thanks Brendan,Brendan wrote:There's also a property on the text component called HideZeros. Setting this to true will hide the value if it is the number zero.
I believed that answer is simple but I could not find it. Options with coding is always possible but not desirable.
