Results 1 to 10 of 10

Loop is skipping iterations

Threaded View

  1. #1
    Registered User
    Join Date
    08-17-2012
    Location
    Serbia
    MS-Off Ver
    Excel 2010
    Posts
    85

    Loop is skipping iterations

    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.
    Last edited by Jovica; 02-22-2014 at 06:50 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] For loop iterations - quick question
    By drinkmorewine in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-07-2013, 02:51 PM
  2. [SOLVED] Losing format information in For Loop iterations
    By GFIJames in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-24-2012, 11:17 AM
  3. VBA For loop where number of iterations can be changed from inside loop
    By barrboy89 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-11-2011, 12:18 PM
  4. VBA | Individual Iterations faster than Loop Statement
    By Butaambala in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-03-2005, 08:05 AM
  5. Do loop skipping
    By medicenpringles in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-27-2005, 10:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1