Copy & Paste X number of times but with certain conditions

Dolphinv4

New Member
Joined
Sep 24, 2018
Messages
12
I copied most of the code below from somewhere and modified it a little and it basically works how i wanted except for some conditions that I wanted to add :(

The original code with slight amendment and which works is below:

Code:
Option ExplicitSub INDO()


    Dim arr As Variant
    Dim wsO As Worksheet
    Dim this As Integer
    Dim i, h As Integer


    arr = ThisWorkbook.ActiveSheet.UsedRange
    Set wsO = ThisWorkbook.ActiveSheet


    For i = LBound(arr, 1) To UBound(arr, 1)
        If IsNumeric(arr(i, 4)) Then
            this = arr(i, 4)
            For h = 1 To this
                Range("J" & Rows.Count).End(xlUp).Offset(1, 0).Value = arr(i, 2)


            Next h
        End If
    Next i
    
End Sub

I wanted to add the following:
1) To paste the first value 1 row below what the macro currently does.
2) Then I wanted to add more conditions, ie, if the data in column 2 in the array starts with "SV-VAS" or "LIC-", then should only paste ONCE. (right now, it's not pasting anything at all for this condition (the other conditions are ok)).

Code:
Sub INDO()



       Dim arr As Variant
    Dim wsO As Worksheet
    Dim this As Integer
    Dim i, h As Integer


    arr = ThisWorkbook.ActiveSheet.UsedRange
    Set wsO = ThisWorkbook.ActiveSheet


    For i = LBound(arr, 1) To UBound(arr, 1)
        If IsNumeric(arr(i, 4)) Then
            this = arr(i, 4)
            For h = 1 To this
                If Left(arr(i, 2), 4) = "LIC-" Or Left(arr(i, 2), 6) = "SV-VAS" Then
[COLOR=#ff0000]                    Range("J" & Rows.Count).End(xlUp).Offset(1, 0).Value = arr(1, 2)[/COLOR]
                ElseIf Left(arr(i, 2), 6) = "GL-VAS" Then
                    'Do nothing
                Else
                    Range("J" & Rows.Count).End(xlUp).Offset(1, 0).Value = arr(i, 2)
                
                End If
            Next h
        End If
    Next i
    
End Sub

Thanks in advance!
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.

Forum statistics

Threads
1,215,340
Messages
6,124,386
Members
449,155
Latest member
ravioli44

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