Showing error implicit conversion from double to string

Hi UiPath Team,

When i used double varible in lookup range activity it is showing error “implicit conversion from double to string”

Hi @alan.prakash

Change the datatype of the out_TotalPayable variable double

already data type is double

@alan.prakash

its gives output as string

when i use double data type in lookup activity it is showing the error

@alan.prakash
Sorry change into string

Hi @alan.prakash,

please use this in your output of vlookup

output = cstr(your double variable)

Or

Change the variable type to Double.

Cheers!

@alan.prakash

try to check its datatype , its working for me

if it not works change its datatype to string

Hi @alan.prakash

Try This

Cdbl(out_TotalPayable) - For converting to Double

OR

Cstr(out_TotalPayable) - For converting to string

can you change output type as object and try once