I have a file with 20 sheets and the data on each sheet is structured in the same position (all 20 sheets are mirror copy of each other), only the content is different. At the moment i am updating each sheet one-by-one. I have listed 3 of the ranges below and am using Union for the formatting, but struggling with For Each Cell Loop code - how do i get it to: go to a cell P6 on each worksheet and calculate 10*5; go to cell T33 and calculate 100/10; go to cell q49 and perfor 50-5 etc. Or go to range P6:T9 and calculate 20*10. Thank you
Sub MultipleRange()
Dim r1, r2, r3, r4, r5, r6, myMultipleRange As Range
Set r1 = Sheets("Sheet1").Range("P6:T9")
Set r2 = Sheets("Sheet1").Range("P28:T34")
Set r3 = Sheets("Sheet1").Range("P55:T55")
Set r4 = Sheets("Sheet2").Range("P6:T9")
Set r5 = Sheets("Sheet2").Range("P28:T34")
Set r6 = Sheets("Sheet2").Range("P55:T55")
Set myMultipleRange = Union(r1, r2, r3, r4, r5, r6)
myMultipleRange.Font.Color = vbBlue
End Sub