Thanks for your response @Yoichi
But, I have 25 columns in the input excel Like in the screenshot
In that Dt, i need to take only the Sum value
Expected Output

I have done my workflow like in the below
-
Filter the data Table
-
Sum all the column one by one
(From d in DtFilter.AsEnumerable Where Not (isNothing(d("sold_negativ")) OrElse String.IsNullorEmpty(d("sold_negativ").toString.Trim)) Select v = CDbl(d("sold_negativ").toString.Trim)).Sum(Function (x) x)

-
After that i will sum all the value
-
Used Add data Row activity
