Conditional Formula

fishin

Board Regular
Joined
Jan 18, 2009
Messages
184
I want the recipient cell (I6) to equal the following statement: "Cable Median Barrier Repair" if the value posted to cell E10 on a worksheet identified as CANDIDATE SELECTION is "C". If however, the value posted to cell E10 is "R", then the recipient cell (I6) is to reflect the following statement: "Guardrail Repair (W & Thrie Beam)". If cell E10 on the worksheet identified as CANDIDATE SELECTION is Blank, then the recipient cell (I6) is also to remain blank.

Help is truly appreciated.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Assuming that if E10 is anything other then C or R you want to return blank then this should work
Code:
=IF(E10="C","Cable Mediam Barrier Repair",IF(E10="R","Guardrail Repair (W & Thrie Beam)",""))
 
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,283
Members
449,075
Latest member
staticfluids

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