Dear Community,
I think the solution is simple, but I'm trying to do the following business rule:
I have a list of names in a Plan1, I need the name of each of them to be repeated by 12x each in Plan2, I have a code that can repeat the first name, but I can not increase my value.
Sub RODAR()
Dim num As Integer
Dim wb As Workbook
Dim ws As Worksheet
Dim wss As Worksheet
Dim nome As String
Set wb = ActiveWorkbook
Set ws = Sheets("Plan1")
Set wss = Sheets("Plan3")
nome = 1
For cont = 2 To 13
wss.Select
nome = Cells(2, 2)
ws.Select
Cells(cont, 2).Value = nome
nome = nome
Next