formula issue?

RUSSELLCLEWS

New Member
Joined
Jan 29, 2022
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hi there. Please can anyone help? Im trying to display the work "Blue" in a cell if two other cells say the word "Standard" I have this formula but cant seem to get it right?

=IF((AND(ISNUMBER('SEARCH'("BLUE",H8 "BLUE",I8)),"STANDARD","")

Can anyone correct me on this?

Thanks in advance..
 
B1 conditional formatting formula
VBA Code:
=IF(A1="Ohlins",1,0)
 
Upvote 0

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi all,

Please could someone correct me on the following formula?

=IF(ISNUMBER(SEARCH("STEALTH",D8)("B",E11)),"BLACK WHEEL SET - BLACK HUBS ","")

I am trying to display "BLACK WHEEL SET - BLACK HUBS" in the cell I am on but only if cell D8 says "STEALTH" and cell E11 says "B"

The following formula works fine for just D8:

=IF(ISNUMBER(SEARCH("STEALTH",D8)),"BLACK WHEEL SET - BLACK HUBS ","")

but I need to include the E11 now?

Any help would be great, thanks in advance...
 
Upvote 0
am trying to display "BLACK WHEEL SET - BLACK HUBS" in the cell I am on but only if cell D8 says "STEALTH" and cell E11 says "B"
Sounds like it should be one of these

Excel Formula:
=IF(AND(D8="STEALTH",E11="B"),"BLACK WHEEL SET - BLACK HUBS","")
Excel Formula:
=IF(AND(ISNUMBER(SEARCH("STEALTH",D8)),E11="B"),"BLACK WHEEL SET - BLACK HUBS","")
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

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