I don't know if its possible to have IIF expression that if its null or '' something like it would set a default value then if it have its own value it will retain
dtexample.Columns["tagForSomething"].Expression = "iif(tagForSomething = '',0,tagForSomething )";
I tried this things but it causes an error
For last note, as much as possible i don't want to use foreach code for this imagine having hundreds and thousands in your data table.
So I'm hoping to use the expression in data column