Unique function to exclude a text character

DDT123

New Member
Joined
Aug 9, 2011
Messages
36
Office Version
  1. 365
Platform
  1. Windows
Greetings all,

I have a column that includes employee's names as well as other data. The employee's names are in lastName [comma] firstName format (Doe, John). I'd like to use the Unique function to list all unique values that does NOT have a comma. I've tried this formula which didn't work... =UNIQUE(FILTER($B:$B,$B:$B<>"*E1*")). **E1 is a helper cell which has a comma** I'd also like for the formula to exclude cells which have numbers if possible, but no biggie if that's too complicated.

Any help would be greatly appreciated.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
It would help if you could post some examples and the expected result.
Maybe something like this:

Book1
ABC
1Doe, JohmJohn Doe Test1
2John Doe Test1Sam young Test1
3Sam young Test1John Paul Test2
4John Doe Test1
5John Paul Test2
6Paul, John Test2
7John Paul Test2
Sheet1
Cell Formulas
RangeFormula
C1:C3C1=UNIQUE(FILTER(A1:A7,NOT(ISNUMBER(SEARCH(",",A1:A7)))))
Dynamic array formulas.
 
Upvote 0
Solution
It would help if you could post some examples and the expected result.
Maybe something like this:

Book1
ABC
1Doe, JohmJohn Doe Test1
2John Doe Test1Sam young Test1
3Sam young Test1John Paul Test2
4John Doe Test1
5John Paul Test2
6Paul, John Test2
7John Paul Test2
Sheet1
Cell Formulas
RangeFormula
C1:C3C1=UNIQUE(FILTER(A1:A7,NOT(ISNUMBER(SEARCH(",",A1:A7)))))
Dynamic array formulas.
Awesome! That worked!!
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

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