Conditional Formula Request

fishin

Board Regular
Joined
Jan 18, 2009
Messages
184
I would greatly appreciate help with formulas to address the following two conditions:

1). The recipient cell is to equal the value posted to cell F82if cell F83 = “CRITICAL” and cell M83 = “X” …..if these conditions are not metthe recipient cell is to remain blank.

2). Therecipient cell is to equal the value posted to cell G83 on a worksheetidentified as QC W Beam if onthat same worksheet (QC W Beam),cell F83 = “CRITICAL” and cell M83 = “X”, otherwise the recipient cell is toremain blank

 

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".
Try this.

=IF(AND(F83="CRITICAL", M83="X"), F82, IF(AND('QC W Beam'!F83="CRITICAL", 'QC W Beam'!M83="X"), 'QC W Beam'!G83, ""))
 
Upvote 0
I assume you want two separate formulas:
1. =IF(AND(F83="CRITICAL",M83="X"),F82,"")
2. =IF(AND('QC W Beam'!F83="CRITICAL",'QC W Beam'!M83="X"),'QC W Beam'!G83,"")
 
Upvote 0
I assume you want two separate formulas:
1. =IF(AND(F83="CRITICAL",M83="X"),F82,"")
2. =IF(AND('QC W Beam'!F83="CRITICAL",'QC W Beam'!M83="X"),'QC W Beam'!G83,"")


THANK YOU SIR...THAT IS EXACTLY WHAT I WAS LOOKING FOR. WORKS GREAT!

Much Appreciated,

Dave S
 
Upvote 0
Thanks for your quick response. It works great. I was however in search of two separate statements.
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,600
Members
449,038
Latest member
Arbind kumar

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