Help Conditional Formula

fishin

Board Regular
Joined
Jan 18, 2009
Messages
184
I need the recipient cell to equal the value posted to cell I165 only if cell E10 on the worksheet titled "Candidate Selection" equals "C" ... otherwise the recipient cell is to remain blank
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try:
Code:
=IF('Candidate Selection'!E10="C",I165,"")
 
Upvote 0
Try:
Code:
=IF('Candidate Selection'!E10="C",I165,"")


Thanks for your response....I failed however to properly/completely structure the request...it should have read as follows:

I need the recipient cell to equal the value posted to cell I165 on worksheet titled "QC W Beam" only if cell E10 on the worksheet titled "Candidate Selection" equals "C" ... otherwise the recipient cell is to remain blank

Forgive me for the oversight
 
Upvote 0
I need the recipient cell to equal the value posted to cell I165 on worksheet titled "QC W Beam" only if cell E10 on the worksheet titled "Candidate Selection" equals "C" ... otherwise the recipient cell is to remain blank
If you look at the equation I posted, you should be able to figure this out pretty easily, because I already show you how to reference a cell on another sheet.
Code:
=IF([COLOR=#ff0000]'Candidate Selection'!E10[/COLOR]="C",I165,"")
Just apply the same logic to cell I165. It should be very straightforward.

Note: If you cannot remember how to reference cells on other sheets, the goods news is you don't have to! Let Excel do the work for you.
If you begin typing your formula, i.e.
=IF(
you can then select the cell you want to insert into the formula (even cells on other sheets), and Excel will write it into your formula for you (just hit the comma (or parenthesis) after selecting the cell (whatever the next character in the formula after the cell reference is).
 
Upvote 0

Forum statistics

Threads
1,214,954
Messages
6,122,461
Members
449,085
Latest member
ExcelError

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