Hi All,
I have a list of worksheet names in "Sheet1" range B2:B100.
I would like to paste the formula : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[1]C[1],""C25"")" into cell A1 of each worksheet mentioned in column B of Sheet1. However, the concatenate formula should keep updating for each worksheet.
For example,
For the first worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[1]C[2],""C25"")" in cell A1
For the 2nd worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[2]C[2],""C25"")" in cell A1
For the 3rd worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[3]C[2],""C25"")" in cellA1
Please help
I have a list of worksheet names in "Sheet1" range B2:B100.
I would like to paste the formula : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[1]C[1],""C25"")" into cell A1 of each worksheet mentioned in column B of Sheet1. However, the concatenate formula should keep updating for each worksheet.
For example,
For the first worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[1]C[2],""C25"")" in cell A1
For the 2nd worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[2]C[2],""C25"")" in cell A1
For the 3rd worksheet, the the vba should update the formula as : ActiveCell.FormulaR1C1 = "=CONCATENATE(Sheet1!R[3]C[2],""C25"")" in cellA1
Please help