hi
i have a one data band that i show a data
in another data band i show a min or max of that data
when my data is null a min show a number like this 2132323212121212
but in decimal
i want if i dont have any data max or min not shown
this is my code of minimum
{Round(Min(DataBand1,boiler.roph),2)}
this is my code that shown a data
{IIF(boiler["roph"] == DBNull.Value,'-',boiler["roph"])}
thank you
min of data
min of data
Hello,
You can use following expression:
Thank you.
You can use following expression:
Code: Select all
{MyDataSource.Count == 0 ? 0 : Min(MyDataSource.MyField)}
min of data
thank you
min of data
Hello,
We are always glad to help you.
Thank you.
We are always glad to help you.
Thank you.