Question about "read range activity" does not read variables in "range"

Hi all Gurus .
Really need some help the read range activity.

Here is the case:

I assign “startcell” = letterofcolumn & 3(in this case, letterofcolumn=“D”)
image
I assign “followedcell”=letterofcolumn & 5((in this case, letterofcolumn=“D”)
image

Both “startcell”&“followedcell” are assigned as GenericValue,

And then I add a "read range " activity, under range, I want to put startcell:followedcell, but it gives me below error.

And because the “letterofcolumn” is dynamic, I can not just enter “D3:D5” for “range” under “read range” activity.

I have try quote "startcell:followedcell " as below ,but it return me an error with " range dose not exist,
image

So my question is how can I fix below expression error and let the robot read “startcell:followedcell”, which in this case is “D3:D5”?

Could you please try to convert the variable data types generic values to string ?
like
startcell.tostring:followedcell.tostring

please try and let me know
Mark as resolved if it works

Hi,

Can you try the following?

startcell.toString+":"+followedcell.toString

Regards,

2 Likes

It needs to be String Type.
So you have to use “:”, not just :

thank you so much!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.