advanced filter with wildcard

daveyc18

Well-known Member
Joined
Feb 11, 2013
Messages
714
Office Version
  1. 365
  2. 2010
so i have a bunch of account #s that are 8 numbers (see example below)

common_account_id
40300691

im trying to pick up anything that starts with 403 (first three numbers)

when i try

common_account_id
403#####

the advanced filter doesnt work


 
Last edited:

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
this ones a bit crude - but you can get the gist if you can use a formula elsewhere in the sheet

Book1
ABCDEFG
240300691add data here40300691add data here
340300256and here40300256and here
440366587more stuff40366587more stuff
540200551few items40300000nothing here
640105589lots here
740300000nothing here
8
Sheet1
Cell Formulas
RangeFormula
E2:F5E2=FILTER(A2:B7,A2:A7-40300000>=0)
Dynamic array formulas.
 
Upvote 0
How about
Excel Formula:
=FILTER(A:A,LEFT(TRIM(A:A),3) = "403")
 
Upvote 0
Solution

Forum statistics

Threads
1,216,128
Messages
6,129,030
Members
449,482
Latest member
al mugheen

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