I have two tables. I need information on one table transferred and converted to the second table. The IF Then statement is easy. But I do not want to have to write it out 700 times. I can not seem to figure out where to place the loops and offset to do what i am looking for. Below is the If Then statement and an explanation of what I am trying to do.
If Sheets(1).Range("F7").Value = 8 Then ' I need this to loop through Range (F7:S7)"
Sheets(3).Range("B5").Value = Sheets(1).Range("A7").Value 'this value to be place in Range (B5:O5) with Range 7 not changing
Else
Sheets(3).Range("B5").Value = "" 'this value to be place in Range (B5:O5)
'Then all the numbers to offset 1 down and repeat 55 times
End if
Please help I am a beginner, an my head is spinning. I am sure when I see the code I will fell like a fool for not figuring it out on my own.
If Sheets(1).Range("F7").Value = 8 Then ' I need this to loop through Range (F7:S7)"
Sheets(3).Range("B5").Value = Sheets(1).Range("A7").Value 'this value to be place in Range (B5:O5) with Range 7 not changing
Else
Sheets(3).Range("B5").Value = "" 'this value to be place in Range (B5:O5)
'Then all the numbers to offset 1 down and repeat 55 times
End if
Please help I am a beginner, an my head is spinning. I am sure when I see the code I will fell like a fool for not figuring it out on my own.