Compare strings

dempa79

New Member
Joined
Jun 12, 2006
Messages
14
This i the code that i have written to compare strings..

If Cells("F" & x).Value = "RedemtionFunds" Or "Sell" Then

x3 = Range("f" & x).Offset(0, -1).Value * x2

else

Msgbox()

End if

But when i try it i get an error message about datatypes...

The thing i that i would like to compare if the text in my cells is equal to "RedemtionFunds" or "Sell".
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
You have to repeat the test:

If Cells("F" & x).Value = "RedemtionFunds" Or Cells("F" & x).Value = "Sell" Then
 
Upvote 0
shoud be

Cells( x,"f").value = "RedemtionFunds" Or Cells(x,"f").value = "Sell" Then
 
Upvote 0

Forum statistics

Threads
1,207,256
Messages
6,077,321
Members
446,278
Latest member
hoangquan2310

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