=if(isna(match(g11,o_p,0)),"",if(isna(match(g19,pws_log_ware,0)),w867,""))

MARKEGANDERSON

Active Member
Joined
Apr 7, 2007
Messages
267
Hello All-

The below formula gives me a check mark(W867), if cell G11 matches "O_P". I am having issues with the second part of the formula - I wanted a check mark also if G19 matches "PWS_LOG_WARE", if not "".
=IF(ISNA(MATCH(G11,O_P,0)),"",IF(ISNA(MATCH(G19,PWS_LOG_WARE,0)),W867,""))

Please help
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Asssuming O_P and PWS_LOG_WARE are named ranges, try:
Code:
=IF(ISNUMBER(MATCH(G11,O_P,0)),W867,IF(ISNUMBER(MATCH(G19,PWS_LOG_WARE,0)),W867,""))
 
Upvote 0

Forum statistics

Threads
1,225,635
Messages
6,186,120
Members
453,340
Latest member
Stu61

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