Trouble with FORs and IFs

oscarmiike

New Member
Joined
Apr 24, 2018
Messages
3
Hi all,

I'm a bit of a rookie and can't figure out how to add another IF to this code below.

Sheets("CORE").Range("A1") is referring to a date.. and if that date can't be found in the ActiveSheet.Range("A1:A100"), I would like it to do nothing, no next.

I would also like to not use something like "Then End Sub".. as there are other similar bits of code like this one in the same sub, doing the same sort of job.

Code:
Sheets("XAUXAG-R").Select
    For Each Cell In ActiveSheet.Range("A1:A100")
        If Cell.Value = Sheets("CORE").Range("A1") Then
            Cell.Resize(1, 5).Copy
        End If
    Next
Sheets("XAUXAG").Select
Range("A1").End(xlDown).Offset(1, 0).PasteSpecial Paste:=xlPasteValues

Many thanks!!

OM.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Perhaps.
Code:
For Each Cell In Sheets("XAUXAG-R").Range("A1:A100")
    If Cell.Value = Sheets("CORE").Range("A1") Then
        Cell.Resize(1, 5).Copy
        Sheets("XAUXAG").Range("A1").End(xlDown).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
    End If
Next Cell
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

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