Nested If question

EduPAz

Board Regular
Joined
Mar 18, 2017
Messages
69
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
Hi, Can someone please help me with this?

I have a table like this:

Code --> Column A: ZSA, SAW, GEN, PT1,SSS, AAA,...
Phase---> Column B: Phase 1, Phase 0, Phase 1, Phase 2,Phase 0, Phase 1,....
Task-->Column C: 05-11, 05-4, 05-78,05-8,05-13,05-20......

I would like to create a new column with the name Client contract to every code that:

-Begins by S or Z
-Excludes Phase 0
-Excludes tasks: 05-1, 05-4 and 05-13

How can I do the nested IF?

Thanks!

Edu
 

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".
For line 1:
Code:
=IF(AND(OR(LEFT(A1,1)="S",LEFT(A1,1)="Z"),B1<>"Phase 0",C1<>"05-1",C1<>"05-4",C1<>"05-13"),"Client contract","")
 
Upvote 0

Forum statistics

Threads
1,215,767
Messages
6,126,770
Members
449,336
Latest member
p17tootie

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