Finding partial word using absolute formula

Patcheen

Active Member
Joined
Sep 28, 2015
Messages
394
Office Version
  1. 365
Platform
  1. Windows
Hi All hope your all ok.

Im trying to find a partial word in a column if it partrial matches a word in cell "A1"

so if i put deo in A1 it should return all for modeos in the required column

this is my formula - IFERROR(@INDEX('All Vehicles Data'!D:D,SMALL(INDEX(('All Vehicles Data'!$D$20:$D$995,$A$1)*ROW('All Vehicles Data'!$D$20:$D$995),0),COUNTIF('All Vehicles Data'!$D$20:$D$995,"<>"&$A$1)+ROWS($20:20))),"")

is there any way of just editing the above formula?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
That formula doesn't make sense. Did you miss a bit?

If you're using 365, FILTER would seem like a better option.
 
Upvote 0
as you have 365 - have you thought about using FILTER

you say <> NOT = to A1
anyway a
simplified example
=FILTER(D3:E10,ISNUMBER(SEARCH(A1,D3:D10)))

Book3
ABCDEFGHIJ
1deo
2
3mondeo1mondeo1
4mondeo2mondeo2
5mondeo3mondeo3
6Audi4mondeo5
7mondeo5modeo8
8Audi6
9audi7
10modeo8
11
Sheet1
Cell Formulas
RangeFormula
H3:I7H3=FILTER(D3:E10,ISNUMBER(SEARCH(A1,D3:D10)))
Dynamic array formulas.
 
Upvote 0
as you have 365 - have you thought about using FILTER

you say <> NOT = to A1
anyway a
simplified example
=FILTER(D3:E10,ISNUMBER(SEARCH(A1,D3:D10)))

Book3
ABCDEFGHIJ
1deo
2
3mondeo1mondeo1
4mondeo2mondeo2
5mondeo3mondeo3
6Audi4mondeo5
7mondeo5modeo8
8Audi6
9audi7
10modeo8
11
Sheet1
Cell Formulas
RangeFormula
H3:I7H3=FILTER(D3:E10,ISNUMBER(SEARCH(A1,D3:D10)))
Dynamic array formulas.
nope never thoght of the filter option it works to do what i wanted a formula to do this does the trick. thank you.
 
Upvote 0
Hi All hope your all ok.

Im trying to find a partial word in a column if it partrial matches a word in cell "A1"

so if i put deo in A1 it should return all for modeos in the required column

this is my formula - IFERROR(@INDEX('All Vehicles Data'!D:D,SMALL(INDEX(('All Vehicles Data'!$D$20:$D$995,$A$1)*ROW('All Vehicles Data'!$D$20:$D$995),0),COUNTIF('All Vehicles Data'!$D$20:$D$995,"<>"&$A$1)+ROWS($20:20))),"")

is there any way of just editing the above formula?
ya forgot the = at the begining sorry
 
Upvote 0
nope never thoght of the filter option it works to do what i wanted a formula to do this does the trick. thank you.
you are welcome
 
Upvote 0

Forum statistics

Threads
1,226,477
Messages
6,191,230
Members
453,649
Latest member
jtc19

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