using If to compare 2 cells VBA Excel 2016

nmganey

New Member
Joined
Oct 11, 2016
Messages
18
Hi,

I am trying to have VBA check if the active cell contains the word that is in cell A5 on sheet 2. Here is what I have for my code. But it keeps comming back false. Can any one tell me how else to write this? The Active cell has Apples/red and cell A5 has Apples.

If ActiveCell Like Worksheets("Sheet2").range("A2").Value then

Else
bla bla bla
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Try this:
Code:
Sub Test()
Dim ans As String
ans = Sheets("Sheet2").Range("A5").Value
    If InStr(ActiveCell, ans) Then
        MsgBox "Yes"
        Else
         MsgBox "No"
    End If
End Sub
 
Upvote 0
Try this:
Code:
Sub Test()
Dim ans As String
ans = Sheets("Sheet2").Range("A5").Value
    If InStr(ActiveCell, ans) Then
        MsgBox "Yes"
        Else
         MsgBox "No"
    End If
End Sub

when the active cell gets to Grapes/ Purple it still gives me the message box of yes. and cell A% still says Apples
 
Upvote 0
Glad I was able to help you. Come back here to Mr. Excel next time you need additional assistance.
Normally in a loop you would not use active cell. But if it works for you that's great. You did not show us your script.

I got it thank you I had the ANS = in the wrong spot if my loop.. :)
 
Upvote 0

Forum statistics

Threads
1,215,692
Messages
6,126,226
Members
449,303
Latest member
grantrob

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