Hello,
I am currently working on making macros to make my life easier and wondering if you nice people can help me as I have 0 knowledge of this macro stuff and am learning. I am trying to make it so cells with certain values get their values pasted in the cell below it. I think I am on the right track. Can anyone help me?
Sub ok()
Dim c As Range
For Each c In Range("J1:J80")
If c.Value Like "*TW747*" Or c.Value Like "*TW691*" Or c.Value Like "*TW2200*" Or c.Value Like "*TW750*" Or c.Value Like "*TW409*" Or c.Value Like "*TW742*" Then
WHAT GOES HERE?
WHAT GOES HERE?
End If
Next c
End Sub
I am currently working on making macros to make my life easier and wondering if you nice people can help me as I have 0 knowledge of this macro stuff and am learning. I am trying to make it so cells with certain values get their values pasted in the cell below it. I think I am on the right track. Can anyone help me?
Sub ok()
Dim c As Range
For Each c In Range("J1:J80")
If c.Value Like "*TW747*" Or c.Value Like "*TW691*" Or c.Value Like "*TW2200*" Or c.Value Like "*TW750*" Or c.Value Like "*TW409*" Or c.Value Like "*TW742*" Then
WHAT GOES HERE?
WHAT GOES HERE?
End If
Next c
End Sub