Mismatch Error

Temo98

New Member
Joined
Oct 23, 2009
Messages
45
I am attempting to write a piece of code that does different actions dependent on the value of a cell. However, when I enter multiple criteria in the "if" statement I receive a mismatch error.

What do I need to do to get the below code to run. Thank you.

Code:
Sub test()
xRow = 2

While Not IsEmpty(Cells(xRow, 1))
    Range("B" & xRow).Value = Application.WorksheetFunction.trim(Range("A" & xRow))
        If Range("B" & xRow).Value = "Digital Display" Or "Digital Search" Then
            Range("C" & xRow).Value = "wow"
        End If
  
    xRow = xRow + 1
Wend
End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Re: Mistach Error

Code:
Sub test()
xRow = 2

While Not IsEmpty(Cells(xRow, 1))
    Range("B" & xRow).Value = Application.WorksheetFunction.trim(Range("A" & xRow))
        Select Case Range("B" & xRow).Value
              Case "Digital Display", "Digital Search"
                  Range("C" & xRow).Value = "wow"
        End Select
    xRow = xRow + 1
Wend
End Sub
or
Code:
If Range("B" & xRow).Value = "Digital Display" Or Range("B" & xRow).Value = "Digital Search" Then
    Range("C" & xRow).Value = "wow"
End If
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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