I need a formula that does the following: If A1 is ABC or also if it is DEF it should show content from cell A2 but only if cell B2 is "no"
I need a formula that does the following: If A1 is ABC or also if it is DEF it should show content from cell A2 but only if cell B2 is "no"
maybe this...
=if(AND(OR(A1="ABC",A1="DEF"),B2="no"),A2,"")
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
Hi,
I beleive this would do it:
=IF(AND(B2="NO",OR(A1="ABC",A1="DEF")), A2,0)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks