What I initially did works, but it is bulky and I am pretty sure can be streamlined. This is a snippet of the code (I repeat this process over and over about 200+ times, I had to break it into two macros):
Set rng = ws.Range("C11:AJ11")
l = 13
For Each cell In rng
Sheets(l).Range("D23") = cell.Value
Sheets(l).Range("I23") = cell.Value
l = l + 1
Next cell
Set rng = ws.Range("C12:AJ12")
l = 13
For Each cell In rng
Sheets(l).Range("D24") = cell.Value
Sheets(l).Range("I24") = cell.Value
l = l + 1
Next cell
So that works, but now I am trying to figure out how to use an array to potentially streamline (if that's possible? or maybe an array isn't the best way? I am very open to advice on better approaches.):
Dim row As Range
Dim rng As Range, cell As Range
Dim TestArray() As Variant
TestArray = Range("C10:AJ54")
l = 13
For Each cell In TestArray
Sheets(l).Range("D22:D66") = cell.Value
Sheets(l).Range("I22:I66") = cell.Value
l = l + 1
Next cell
So I get the "Compile error: For Each control variable on arrays must be Variant" which I did look into, but I am not fully sure how to correct it. I am also worried that I won't populate the sheets in the correct order that I want. It should pull from one row at a time, and one cell in order to each sheet first. Then it should go to the next row of the activesheet and take values from each cell of THAT row and put one value in each sheet in order, etc. etc.
I hope that is a good amount of detail for what I am asking, but if not, I am happy to try to explain more :)