Only show name if added to other list

sofiachr

Board Regular
Joined
Jan 15, 2013
Messages
98
Hi!

I have a file where my coworkers need to add them self for transport to an event. They can either add them self as drivers (column A) and allow others to fill in their names at the passenger seats (column E:H), or they can add them self as a passenger on a row where someone else are named driver. To the right of this table I have a list of everyones names representing who haven´t yet added themself somewhere in the list. I want this name to disappear and show nothing ("") when added to the list.

So, if my coworker Sandra is adding her self as a driver or a passenger to the list, any cells in the table of A6:H29, her name in my list of "not yet signed up" will disappear.

How can I use a formula to do this?

Regards,
Sofia
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi Sofia,

You can use Conditional Formatting to color the names white, so they looks like they are disappeared.
If you have the first name in cell K2, you can use below formula as a rule.

Excel Formula:
=IF(COUNTIF(A:H,K2)>0,TRUE,FALSE)

/Skovgaard
 
Upvote 0
Hi Sofia,

You can use Conditional Formatting to color the names white, so they looks like they are disappeared.
If you have the first name in cell K2, you can use below formula as a rule.

Excel Formula:
=IF(COUNTIF(A:H,K2)>0,TRUE,FALSE)

/Skovgaard
The IF function is redundant and unnecessary. Since the Conditional Formatting formula is just looking for a boolean (TRUE/FALSE) value, you can get that with just your inequality, i.e.
Excel Formula:
=COUNTIF(A:H,K2)>0
 
Upvote 0

Forum statistics

Threads
1,215,119
Messages
6,123,172
Members
449,094
Latest member
bes000

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