I'm trying to divide a set number of columns (A to BL) in sheet1, with the same number of columns in sheet2. Each cell in the first sheets range should be divided by the same cell in the second sheet.
The numbers of rows however are dynamic. (the same between sheets, but number per sheet will change weekly)
Im also trying to paste the answers into sheet 3.
I've been trying to build off of recorded macros but am not getting anywhere.
Sub Macro5()
Range("A1").Select
ActiveCell.Formula2R1C1 = "=Result2!R[1]C[1]:R[6]C[4]/Result!R[1]C[1]:R[6]C[4]"
Range("E15").Select
End Sub