I am new to loops but it seems that I can not avoid them forever.
I've modified macro from the web that suits my needs but in my case it doesn't work properly.
Sub TRANSF()
Dim i As Integer
Dim counter As Range
Dim l As Range
Dim ws As Worksheet
Set ws = Sheets("JUNK")
Set l = ws.Range("b1")
Set counter = ws.Range("a13")
For i = 1 To l
Call NalogADD
counter.Value = i
Next i
End Sub
Where l = is counta function to count number of iterations for every case
counter = should be number in cell "A13" from 1 to l (this number represent row number
so when changes from 1 to l it calls NalogADD which basically copies range (that is dependent of counter
number-match index function).
Range (NalogADD) is copied in first empty cell and so on.
After review of whole operation, not all instances are activated/copied(e.g.2-4, 5...missing) also instances
(copied ranges) are mixed (last is copiedfirst, then first, then 6th...).
I hope that I've explained this properly.
Bookmarks