Hi UiPath Team,
When i used double varible in lookup range activity it is 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”
Change the datatype of the out_TotalPayable variable double
already data type is double
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!
try to check its datatype , its working for me
if it not works change its datatype to string
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