Change datatype from int 32 to int 64

Hi ,
Can any one help me
I created a variable in input dialog box phonenumber to int (32)
but while running its giving me an error.
want to change from int(32) to int(64)
Thank u.

1 Like

May I know what was the error we were getting
Yah we can change like this
Convert.ToInt64(yourintegervariable.ToString)

Yourintegervariable is of type int32

Cheers @saritha

1 Like

not valid value for int (32)

trying to enter pnhone number which i declared the phno as int(32).

You mean like you want to enter that phone number in a field
If so we can mention them as a string in type into activity
Or if we want to store them in a variable of type long As mentioned earlier in the previous comment

Then

Cheers @saritha

1 Like

Hi,

If you want to know how to define Int64 type, the following might help you.

img20191230-2

Regards,

Thank u.

1 Like

thank u

1 Like

Cheers and Happy new year :partying_face:
@Yoichi @saritha

1 Like

Use,
Convert.ToDouble(yourintegervariable.ToString).

1 Like

Thank u Palaniyappan.

1 Like