Loop by row and then by column

MrTreasury

New Member
Joined
May 17, 2019
Messages
11
Hello Forum,

I'm stuck and require your help.

I'm currently trying to produce a macro which fills cells down by row and then move onto column. As the macro moves onto the next column, the number of rows decreases (It'll look like stairs when complete)

The general jist of the spreadsheet is related to forward rates in Foreign Currency. We have created what we want using IFERROR, but ideally want this to be done by a macro.

Here is a snippet of the macro. Apologies if this isn't well written, it is rather difficult to explain.

Currently, the code will complete one column and then end. So I'm unsure as to why the loop isn't moving into the next column, so I put a loop in a loop as per below.

Please ask away any questions.

Thanks, Mr T.

Code:
M = 9
N = 6
TimeM = 9
TimeN = 5
Maturity = ws1.Cells(M, N).Value
Time = ws1.Cells(TimeM, TimeN).Value
R = 9 ' row
O = 7
T = 9



For i = 1 To 18
    
    For j = 1 To 18

         If Time < Maturity Then
            ws1.Cells(R, O).Value = 0
         ElseIf Time >= Maturity Then
            ws1.Cells(R, O).Value = ws1.Cells(T, 3).Value / ws1.Cells(28, O).Value '''''
        Else
            ws1.Cells(R, O).Value = 0
            
        M = M + 1
        N = N + 1
        TimeM = TimeM + 1
        TimeN = TimeN + 1
        'R = R + 1
        O = O + 1
        
        
    End If
       
    Next j
    
    R = R + 1
    T = T + 1

    
Next i

End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Code:
Sub test()

x = 18
For i = 1 To 18
        For j = 1 To x
            Cells(i, j) = i
        Next j
x = x - 1
Next i

End Sub
 
Upvote 0
Code:
Sub test()

x = 18
For i = 1 To 18
        For j = 1 To x
            Cells(i, j) = i
        Next j
x = x - 1
Next i

End Sub
Thank you, it's now printing across the rows and columns. Unfortunately, it isn't completing the formula
Code:
 ElseIf Time >= Maturity Then
            ws1.Cells(i, j).Value = ws1.Cells(T, 3).Value / ws1.Cells(28, O).Value

Depending on which variable I change (O or T), means it either prints 0% or prints the results for the first column across the entire section.

Full For Loop + If statement:

Code:
 For i = 3 To 26
    For j = 7 To x
    On Error Resume Next
        If Time < Maturity Then
            ws1.Cells(i, j).Value = ""
        ElseIf Time >= Maturity Then
            ws1.Cells(i, j).Value = ws1.Cells(T, 3).Value / ws1.Cells(28, O).Value '
        Else
           ws1.Cells(i, j).Value = ""
        T = T + 1
        M = M + 1
        TimeM = TimeM + 1
        O = O + 1
        End If
        
    Next j
    
'T = T + 1
'O = O + 1
'x = x + 1
Next i

I'm unsure as to why it isn't repeating the
Code:
 ElseIf Time >= Maturity Then
            ws1.Cells(i, j).Value = ws1.Cells(T, 3).Value / ws1.Cells(28, O).Value
section across all the columns as I am doing both T=T+1 and O=O+1

Any thoughts, because I have been tweaking the code but I don't seem to get either.
 
Upvote 0
The general jist of the spreadsheet is related to forward rates in Foreign Currency. We have created what we want using IFERROR, but ideally want this to be done by a macro.

You can put the formula or formulas used, in which cells they are and what data you have on the sheet.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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