NBartomeli
Programmer
I am trying to convert a value in a datatable, which is a string and has to remain that way, to an integer or double value so I can perform a SUM operation on it.
I have tried the following:
ColValue is System.String
Any suggestions would be helpfull.
I have tried the following:
Code:
objRow.Item("Total") = objDataReport.Tables("ColL2").Select("Sum(Convert(ColValue,'System.Int32'))")
ColValue is System.String
Any suggestions would be helpfull.