How to pass variable in write cell range

how to pass a variable to write cell range which has a value like B:B10

1 Like

Hello @sathish_Kumar6
There is a property β€œText” for the activity which you can pass the value
image

Thanks,
Mousa

β€œB”+var1.tostring+β€œ:”+β€œB”+var2.tostring
you can do like that

Hi @sathish_Kumar6
Please go through the below xaml file. It will help you
Thanks and Regards
Sreejith
WriteRange.xaml (5.6 KB)

Hey!

We can do like this…

Create a int variable

Assign IntCounter = 2

The above assign should outside the for each loop

Now take any loop (Foe Each, While, Do-While, For Each Row in DataTable)

inside the for each row do like this

Take one write cell activity perform like this

"B2:B"+(intCounter+1).ToString

In the end of the loop increment the counter like this

Assign intCountrer = intCounter+1

This will increment the counter value

Try this and let me know

Regards,
NaNi

thanks bro it worked

1 Like

thanks for the reply

thanks for the reply thiru

1 Like

thanks for the workflow file sreejith

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