Currently have the following Assign:
strPostagePaid = row.Item(“PostagePaid”).ToString.Trim()
and I originally applied this to convert it to an integer:
intPostagePaid = CInt(strPostagePaid)
But the issue I have is it keeps on rounding the value. i.e. if its 0.58 then it rounds it to 1.00
Any ideas on how I can improve on this?