Datatable Column Types

Morning All

Im reading from an SQL Db into a Datatable.

One of the columns contains a Quantity

When it goes into the Datatable in UiPath its a string, so when I try to type this information into a website it won’t action it because it only accepts numbers not strings how do I I change this

image

I know I’ve written .ToString and I know this is the issue :slight_smile:

convert.ToInt32(row(“colname”).ToString) to convert that as int, but type into always take string as input, am wondering how that helps you to use type into. if you want to use typeinto then again you have to convert it to string.