OilEconomist

Active Member
Joined
Dec 26, 2016
Messages
421
Office Version
  1. 2019
Platform
  1. Windows
Thanks in advance for any suggestions and I will post feedback!

The code should do copy and Paste Transpose seven times, but it only does it once. Any idea why? Seems like it's not running the Loop and the issue must be with If Then Statements.

The only part of my code that seems to get executed is for the following:
Code:
If Cells(i, 12) = "Grand Total" Then
                RowPasteCF = 4
                StartRow = i + 4


Where the following is done:

Code:
'Gross Volumes
                'Copying
                    With Sheets("Data")
                        .Range(.Cells(StartRow, 2), .Cells(LRPHDW, 4)).Copy
                    End With
 
                'Pasting
                    Sheets("Cash.Flow").Select
                    Worksheets("Cash.Flow").Range("B" & RowPasteCF).Select
                    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                        :=False, Transpose:=True

Entire Code:
Code:
Sub TransposeP()
   
    'Dimensioning
        Dim LastRow As Long  
        Dim StartRow As Long
        Dim LRPHDW As Long
        Dim Category As String
   
    'Turn OFf Screen Updating
        Application.ScreenUpdating = False
   
    'Turn off Automatic Calculation & Calculate
        Application.Calculation = xlManual
        Calculate
   
    'Expands the Cash Flow Tab
        Worksheets("Cash.Flow").Activate
            ActiveSheet.Outline.ShowLevels RowLevels:=8, ColumnLevels:=8
           
    'Pasting the Total Values
 
   
        'Calculate and Turn on Automatic Calculation
            Calculate
            Application.Calculation = xlAutomatic
       
        'Turn On Screen Updating
            Application.ScreenUpdating = True
           
        'Placing the cursor
            Sheets("Cash.Flow").Activate
            Sheets("Cash.Flow").Range("B4").Select
   
    'Activate the "Data" Tab
        Sheets("Data").Activate
   
        Cells(1, 12).Value = "Grand Total"
 
    'Find the Last Row of all the data
        LastRow = Cells.Find(What:="*", after:=Range("A1"), LookAt:=xlPart, _
            LookIn:=xlFormulas, SearchOrder:=xlByRows, _
            SearchDirection:=xlPrevious, MatchCase:=False).Row
 
   
    'Loop through the data and find the different Reserve Categories to Paste
        For i = 1 To LastRow
 
            If Cells(i, 12) = "Grand Total" Then
                RowPasteCF = 4
                StartRow = i + 4
               
            ElseIf Cells(i, 12) = "Cat2" Then
                RowPasteCF = 44
                StartRow = i + 4
               
            ElseIf Cells(i, 12) = "Cat3" Then
                RowPasteCF = 84
                StartRow = i + 4
               
            ElseIf Cells(i, 12) = "Cat4" Then
                RowPasteCF = 164
                StartRow = i + 4
               
            ElseIf Cells(i, 12) = "Cat5" Then
                RowPasteCF = 244
                StartRow = i + 4
                       
            ElseIf Cells(i, 12) = "Cat6" Then
                RowPasteCF = 324
                StartRow = i + 4
                   
            ElseIf Cells(i, 12) = "Cat7" Then
                RowPasteCF = 404
                StartRow = i + 4
           
            End If
           
   
    Category = Cells(i, 12)
   
    If Category = "Grand Total" _
        Or Category = "Cat2" _
        Or Category = "Cat3" _
        Or Category = "Cat4" _
        Or Category = "Cat5" _
        Or Category = "Cat6" _
        Or Category = "Cat7" _
    Then
   
        'Copying and Pasting The Data
            'Find the last row (LRPHDW)(this will be applicable for all data for all categories)
                LRPHDW = Range("A" & StartRow).End(xlDown).Offset(1).Row
                LRPHDW = LRPHDW - 2
           
            'Gross Volumes
                'Copying
                    With Sheets("Data")
                        .Range(.Cells(StartRow, 2), .Cells(LRPHDW, 4)).Copy
                    End With
 
                'Pasting
                    Sheets("Cash.Flow").Select
                    Worksheets("Cash.Flow").Range("B" & RowPasteCF).Select
                    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                        :=False, Transpose:=True
           
        End If
           
    Next i
 
    'Ending the Loop
 
End Sub
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Yikes, after messing with this forever I decided to post my question here, and then I finally figured it out after I posted.

I added in some additional code (i.e. Message Box) and saw that the Grand Total is the only Category and finally figured out that I was not reactivating the Data Sheet.

Basically I have figured this one out. I changed:

Code:
For i = 1 To LastRow


            If Cells(i, 12).Value = "Grand Total" Then
                RowPasteCF = 4
                StartRow = i + 4

to the following:

Code:
For i = 1 To LastRow
            Sheets("Data").Activate
            If Cells(i, 12).Value = "Grand Total" Then
                RowPasteCF = 4
                StartRow = i + 4
 
Upvote 0

Forum statistics

Threads
1,215,400
Messages
6,124,702
Members
449,180
Latest member
craigus51286

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