Looping through Data

jwburritt

New Member
Joined
May 22, 2019
Messages
49
Office Version
  1. 365
Platform
  1. Windows
Hi: I have data in col A and B. I'd like to build a macro that, if it finds the term "trigger" in col A, it copies the data in col B to col C (all in the same row). But, if it doesn't find the term "trigger" in col A, it copies the prior successful data to col C. Here's what I have so far ...

Code:
Sub Data_Copy()

    
    Dim i As Long
    Dim myValue As String
    Dim LastRow As Long
    Dim StartRow As Long
    
    StartRow = 1
    LastRow = Range("A" & StartRow).End(xlDown).Row
    
    For i = StartRow To LastRow
        myValue = Range("A" & i).Value
        If myValue = "Trigger" Then
            Range("C" & i).Value = Range("B" & i).Value
            Else: Range("C" & i).Value = myValue
        End If
    Next i
    


End Sub



Col ACol BCol C
TriggerBlueBlue
Not TriggerYellowBlue
Not TriggerRedBlue
TriggerGreenGreen

<tbody>
</tbody>

Thank you!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
How about
Code:
Sub jwburritt()
   Dim Cl As Range
   With Range("A2", Range("A" & Rows.Count).End(xlUp))
      .Replace "Trigger", "=xxxTrigger", xlWhole, , False, , False, False
      For Each cl In .SpecialCells(xlFormulas, xlErrors)
         cl.Offset(, 2).Value = cl.Offset(, 1).Value
      Next cl
      .Offset(, 2).SpecialCells(xlBlanks).FormulaR1C1 = "=r[-1]c"
      .Offset(, 2).Value = .Offset(, 2).Value
      .Replace "=xxxTrigger", "Trigger", xlWhole, , False, , False, False
   End With
End Sub
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0
Here is another way to consider (better late than never:biggrin:)...
Code:
Sub Data_Copy()
  Dim i As Long
  For i = 1 To Cells(Rows.Count, "A").End(xlUp).Row
    If LCase(Cells(i, "A").Value) = "trigger" Then
      Cells(i, "C").Value = Cells(i, "B").Value
    Else
      Cells(i, "C").Value = Cells(i - 1, "C").Value
    End If
  Next
End Sub
Note: This code assume cell A1 will always contain the word "Trigger"
 
Upvote 0
Works great. Just had to move the data down so the first column begins at A2 and the counter begins at 2. Otherwise this line
Code:
Cells(i, "C").Value = Cells(i - 1, "C").Value
would throw a 1004 error.

Thanks again!
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,483
Members
448,967
Latest member
visheshkotha

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