LuisVilarMoreira
New Member
- Joined
- Feb 15, 2018
- Messages
- 19
- Office Version
- 2016
- Platform
- Windows
Hello everyone
I need your help.
I have a table (d11 : o70) that has to be filled with values that are in a column in another spreadsheet.
The first 12 results go to row 11 from column "d" to column "o", the next 12 to row 12 and so on up to row 70.
I could do like this:
But it was a very time-consuming process.
My knowledge of VBA is limited. Can you help me solve this problem?
Thank you all in advance for your attention.
Luís
I need your help.
I have a table (d11 : o70) that has to be filled with values that are in a column in another spreadsheet.
The first 12 results go to row 11 from column "d" to column "o", the next 12 to row 12 and so on up to row 70.
I could do like this:
VBA Code:
Sheets("R_Branco_I5").Range("d11") = Sheets("D_socp_tts").Range("a2")
Sheets("R_Branco_I5").Range("e11") = Sheets("D_socp_tts").Range("a3")
But it was a very time-consuming process.
My knowledge of VBA is limited. Can you help me solve this problem?
Thank you all in advance for your attention.
Luís