ISNULL Function
Thanks very Much, Is there any probablity to make changes at entery level. Ex: When we load data from source all the "NULLS" to change 0, instead of changing invidual column. what is your source? If it...
View ArticleISNULL Function
Thanks very Much,Is there any probablity to make changes at entery level.Ex: When we load data from source all the "NULLS" to change 0, instead of changing invidual column.
View ArticleISNULL Function
ISNULL(ColumnName) == True ? "0" : ColumName ISNULL (ColumnName) ? "0" : ColumName check this. ISNULL (ColumnName) ? 0 : ColumNameLet us TRY this | Don’t forget to mark the post(s) that answered your...
View ArticleISNULL Function
Hi Guys,I am working on GL table, apparently I got NUll values in some columns. Columns data type are currency and I want to replace all the "NULLS" with 0. I am using derived column transformation and...
View Article