ISNULL(ColumnName) == True ? "0" : ColumName
ISNULL (ColumnName) ? "0" : ColumName
check this.
ISNULL (ColumnName) ? 0 : ColumName
Let us TRY this | Don’t forget to mark the post(s) that answered your question
http://quest4gen.blogspot.com/
ISNULL(ColumnName) == True ? "0" : ColumName
ISNULL (ColumnName) ? "0" : ColumName