7,55,666.34 is not valid values for int64

Hi,

I’m extracting value like this 7,55,666.77. what datatype should I assign for the value??

@Sunitha_Bist, Use
Decimal
or
Double
datatype based on the precision you need.

Reference : String to Integer - #4 by andrzej.kniola

Regards,
Dominic :slight_smile:

@Dominic both datatype shows same message not valid values for decimal and double

@Sunitha_Bist

I think you are reading a text value…so use this Convert.ToDouble(“your value”)

Regards,
Mahesh

@Sunitha_Bist, May we have a sample/detailed explanation what you are trying to do ?

Any xamls/screenshots will be more helpful !

Regards,
Dominic :slight_smile:

Hi @Sunitha_Bist,

Int64
Range
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807

If you want to use the values after dot also use double or decimal

if you are using string value convert to Double or decimal based on your datatype

Regards,
Arivu