Hi there,
I need help with Visual Basic.
I am trying to use a variable to select different sheets
Example :
I would like to have this formula in Cells A1 of my summary sheet
Range("A1").Sel ect
ActiveCell.Form ulaR1C1 = "=IF(Sheet1!R[5]C[1]=3,""Good"",""B ad"")"
Similarly, in Cell A2 for my summary sheet, I would like to have the same formula as above, however I would like to refer to Sheet2 instead of Sheet1
Range("A2").Sel ect
ActiveCell.Form ulaR1C1 = "=IF(Sheet2!R[5]C[1]=3,""Good"",""B ad"")"
How do I make the sheets that I refer to a variable, so that I can use a loop to fill in Cells A1 to Cells A300 of my summary sheet, with the same formula but refering to 300 different sheets, ie Sheet1 to Sheet300?
Can anyone help me?
Thanks
I need help with Visual Basic.
I am trying to use a variable to select different sheets
Example :
I would like to have this formula in Cells A1 of my summary sheet
Range("A1").Sel ect
ActiveCell.Form ulaR1C1 = "=IF(Sheet1!R[5]C[1]=3,""Good"",""B ad"")"
Similarly, in Cell A2 for my summary sheet, I would like to have the same formula as above, however I would like to refer to Sheet2 instead of Sheet1
Range("A2").Sel ect
ActiveCell.Form ulaR1C1 = "=IF(Sheet2!R[5]C[1]=3,""Good"",""B ad"")"
How do I make the sheets that I refer to a variable, so that I can use a loop to fill in Cells A1 to Cells A300 of my summary sheet, with the same formula but refering to 300 different sheets, ie Sheet1 to Sheet300?
Can anyone help me?
Thanks
Comment