A simple if formula

silentcoates

New Member
Joined
Oct 11, 2005
Messages
41
If I have list of names in column G (30 different names) and a list of names in column P (5 names).

I need a formula inserting in column L that looks at columns G and says if name in column G1 is in the list of 5 names in column P it displays Team Leader in column L. If it does not appear then it should show CSE.

can anyone help
 

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 using COUNTIF within an IF, i.e. If(countif(p1:p5,g1)>0,"in list","not in list")
 
Upvote 0
In L1 copied down column

=IF(ISNA(MATCH(G1,P$1:P$5,0)),"CSE","Team Leader")

I'm assuming your names in column P are in P1:P5
 
Upvote 0

Forum statistics

Threads
1,226,224
Messages
6,189,728
Members
453,566
Latest member
ariestattle

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