How to chech Decimal is null?
How to chech Decimal is null?
I want to check decimal is null in text editor window.
Re: How to chech Decimal is null?
Hello.
Could you describe your issue more detailed with any sample?
Thank you.
Could you describe your issue more detailed with any sample?
Thank you.
Re: How to chech Decimal is null?
Yes , I have a column in datasource type Decimal(nullable) and try to check null with IIF like;
IIF(datasource.column1 == null, "N/A",datasource.column1);
IIF(datasource.column1 == null, "N/A",datasource.column1);
Re: How to chech Decimal is null?
Hello,
Please try to use the following expression:
Thank you.
Please try to use the following expression:
Code: Select all
IIF(datasource["column1"] == DBNull.Value, "N/A",datasource.column1);
Re: How to chech Decimal is null?
"DBNull.Value" Generate error in text editor.
Re: How to chech Decimal is null?
Hello,
Please send us a sample report which reproduce the issue for analysis.
Thank you.
Please send us a sample report which reproduce the issue for analysis.
Thank you.