Excel Write Cell Question

I am trying to insert a string in excel but I want to insert from cell “B2” what happens is that it does not respect me in the write cell and paste it below

image

image

“B2”+ (idx.tostring) = B21 only, that’s why it is writing from B21.

You need to change the cell number in that formula.

Hi @Ivan_torres_oliva,

I got it,
“B2”+ (idx.tostring) —> In this + is just Concatenating your string “B2”+“1” — B21

If you want to do addition of 2 with index no then, try this,
“B”+(2+idx).ToString —> Now it’ll first add 2 plus index no and then convert it into string and then, concentrate with B —> B3