Issue with If ElseIf not Working Properly

CMVasquez

New Member
Joined
Jul 29, 2017
Messages
7
I have a macro where I select files to open then my macro runs on each file.
It checks cells within a range for the correct data I have everything working except a small part of the code.

If Range("D1").Formula <> "=Latest!C5" Then
ElseIf Range("D1").Formula <> "=Latest!B5" Then
MsgBox "Cell D1 formula is incorrect."
End If

Now it checks the cell in each worksheet but for some reason says the formula is incorrect for cells containing the =Latest!B5 formula, but if I swap the formula's places in the if elsif, then all the worksheets with the =Latest!C5 formula say they are incorrect.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
How about this:

Code:
If Range("D1").Formula <> "=Latest!C5" Then
    If Range("D1").Formula <> "=Latest!B5" Then
        MsgBox "Cell D1 formula is incorrect."
    End If
End If
 
Upvote 0
You are very welcome. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,221,483
Messages
6,160,095
Members
451,617
Latest member
vincenzo1

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