More Specific Filter

ORN99

New Member
Joined
Oct 13, 2002
Messages
8
Hi,
I have full spreadsheets of approx 65K rows, and in one column is a non-consecutive series of characters (mostly formated like, "ST32009FC"). I want to filter just the ones that contain an "FC" and since they're not in perfect consecutive order, the ADVANCED FILTER option will not help.

How do I filter just the records with the "FC" at the end of the string?

Thanks.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Enter another column looking for the FC then filter using that column.

=IF(FIND("FC",A1,1)>0, "FC","")

If FC is there then FC will show in the cell else a #VALUE error will appear, you can then sort by that column.
 
Upvote 0
Use AutoFilter-Custom rather than AdvanceFilter. "Data/Filter/AutoFilter/Custom, Show rows where: equals, *FC", where the * is a wiildcard for anything that comes before FC
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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