Code not working

dnicholsby

New Member
Joined
Jan 24, 2017
Messages
26
Hello,

I have written some code by I keep getting an error "Next without For". Any help appreciated:

Code:
Sub SelectStocks()


Dim i As Integer
Dim r As Integer
Dim region As String
Dim StockCount As Integer
Dim lastrow As Integer
Dim Ticker As String
Dim destCell As range


lastrow = Cells(Rows.Count, "A").End(xlUp).Row


For i = 50 To 59
For r = 18 To lastrow


StockCount = Cells(38, i).Value
If StockCount = 0 Then Next i


region = Cells(17, i)


    ElseIf Cells(1, r).Offset(0, 4) = region Then
        If Cells(1, r).Offset(0, 17) <= StockCount Then
        Ticker = Cells(1, r).Value
        Set destCell = Worksheets("Stage 3").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
        destCell.Value = Ticker.Value
        End If
    ElseIf Cells(1, r).Offset(0, 17) > StockCount Then Next i


End If


Next r
Next i


End Sub
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Not sure i totally inderstand what you are doing but maybe try this:

Code:
lastrow = Cells(Rows.Count, "A").End(xlUp).Row

For i = 50 To 59
    For r = 18 To lastrow
        StockCount = Cells(38, i).Value
        If StockCount = 0 Then Exit For
        region = Cells(17, i)
        If Cells(1, r).Offset(0, 4) = region Then
            If Cells(1, r).Offset(0, 17) <= StockCount Then
                Ticker = Cells(1, r).Value
                Set destCell = Worksheets("Stage 3").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
                destCell.Value = Ticker.Value
            Else
                Exit For
            End If
        End If
    Next r
Next i
 
Upvote 0

Hmm... no errors but my intention didn't work!

In summary i need to copy a ticker from Column A (from row 18 down) into Sheet Stage 3 based on data in columns D (a region) and column Q (a rank).

I have 10 different regions and I have a calculated the number of tickers i need for each region. For example, if the calculated number is 3 then i want all tickers from that region with a ranking of 1, 2 or 3.

The stockcount is meant to determine the number of tickers i need for a region, return the stocks, then move onto the next region.

Any ideas?
 
Last edited:
Upvote 0
Does this work?
Code:
Sub SelectStocks()
Dim i As Integer
Dim r As Integer
Dim region As String
Dim StockCount As Integer
Dim lastrow As Integer
Dim Ticker As String
Dim destCell As Range

    lastrow = Cells(Rows.Count, "A").End(xlUp).Row

    For i = 50 To 59
    
        For r = 18 To lastrow

            StockCount = Cells(38, i).Value

            If StockCount <> 0 Then

                region = Cells(17, i)

            ElseIf Cells(1, r).Offset(0, 4) = region Then
                If Cells(1, r).Offset(0, 17) <= StockCount Then
                    Ticker = Cells(1, r).Value
                    Set destCell = Worksheets("Stage 3").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
                    destCell.Value = Ticker
                End If
            End If

        Next r

    Next i

End Sub
 
Upvote 0
Got it working. My bad with cell referencing but also I think i was right with the elseif. This is the final code:

Code:
Dim i As Integer
Dim r As Integer
Dim region As String
Dim StockCount As Integer
Dim lastrow As Integer
Dim Ticker As String
Dim destCell As range


    lastrow = Cells(Rows.Count, "A").End(xlUp).Row


    For i = 50 To 59
    
        For r = 18 To lastrow


            StockCount = Cells(38, i).Value


            If StockCount <> 0 Then


                region = Cells(17, i).Value


                If Cells(r, 1).Offset(0, 3).Value = region Then
                    If Cells(r, 1).Offset(0, 16).Value <= StockCount Then
                    Ticker = Cells(r, 1).Value
                    Set destCell = Worksheets("Stage 3").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
                    destCell.Value = Ticker
                    End If
                End If
            End If


        Next r


    Next i
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,771
Members
452,353
Latest member
strainu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top