Hi,
I have vlookup
and it's working.
But I don't want to start from R2. Possition is choosen before and it's called rows_x_begin:
for example: rows_x_begin = 26
so it should be R26
how to add rows_x_begin into function.
I tried:
but failed
I have vlookup
Code:
ActiveCell.Formula = "=IFERROR(VLOOKUP(R2,'" & sfullpath & "'!" & Rng & ",3,0),""Other"")"
But I don't want to start from R2. Possition is choosen before and it's called rows_x_begin:
for example: rows_x_begin = 26
so it should be R26
how to add rows_x_begin into function.
I tried:
Code:
ActiveCell.Formula = "=IFERROR(VLOOKUP(R 'rows_x_begin','" & sfullpath & "'!" & Rng & ",3,0),""Other"")"