I have 2 worksheets (sht1, sht2) with both having similar size ranges and I'd need to refer with formulas from sht2 to sth1.
Example: on sht2 add formulas to range I10:K11 that link to sht1 range B2:D3 next on sht2 add formulas to range I20:K21 that link to sht1 range B6:D7 and so on as long as there are ranges
There are hundreds of these ranges but on both sheet with separate distances from each other and there is other stuff between the ranges so I can't just populate whole sheets. Distances between ranges on sht1 are constant as well as on sht2, just different from each other.
What would be the best way to populate the range on sht2 with formulas to sht1? Should I just use integer in Cells and then move the integer by known distance between loops?
For i = <something> to <something else> STEP <stagger>
where the stagger is the constant distance. Apply some rudimentary maths toi
for the second stagger. - user4039065