How to space =Filter by row and return TRUE

Mooncake1

New Member
Joined
Sep 18, 2021
Messages
16
Office Version
  1. 365
Platform
  1. Windows
hi friends

I have another addon to my sheet that im looking to sort.

i would like to return a TRUE on each row where the =filter match exists (don't know how) against the criteria in col A

here is an example sheet of what it will look like

Book1.xlsx
ABCDEFGHI
1Not ideal.Wanting to do this
2Hardcode list match?Yes or noSequenceYes or noSequenceChanging ListSequence
3JoeBen858fdghj 321
4GeorgeDan131dfsh 232
5GladysDiesel 113
6Ben74dgfh 224
7Barry142dgfh 4575
8Bonk156jg 657546
9Bob98hj 47
10DanTRUE8Ben8
11Diesel170fgh 5469
12DustinJoe 7810
13Barry 7911
1416tyh 8212
15TRUE13Dan13
1616tyh 8414
1716tyh 8515
18Dan 8616
Sheet1
Cell Formulas
RangeFormula
C3:D4C3=FILTER(H3:I18, COUNTIF(A3:A12, H3:H18))
Dynamic array formulas.


anyone know how?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Would this, entered into E3 only, be any good?

21 09 20.xlsm
ABEFGHI
1Wanting to do this
2Hardcode list match?Yes or noSequenceChanging ListSequence
3Joe 58fdghj 321
4George1dfsh 232
5GladysDiesel 113
6Ben74dgfh 224
7Barry142dgfh 4575
8Bonk156jg 657546
9Bob98hj 47
10DanBen8Ben8
11Diesel170fgh 5469
12DustinJoe 7810
13Barry 7911
1416tyh 8212
15Dan13Dan13
1616tyh 8414
1716tyh 8515
18Dan 8616
Sheet2 (2)
Cell Formulas
RangeFormula
E3:F18E3=IF(COUNTIF(A3:A12,H3:H18),H3:I18,"")
Dynamic array formulas.
 
Upvote 0
How about in E3
Excel Formula:
=IF(ISNUMBER(MATCH(H3:H18,A3:A12,0)),TRUE,"")
 
Upvote 0
Solution
Would this, entered into E3 only, be any good?
If you actually want the TRUE instead of names then

21 09 20.xlsm
ABEFGHI
1Wanting to do this
2Hardcode list match?Yes or noSequenceChanging ListSequence
3Joe 58fdghj 321
4George1dfsh 232
5GladysDiesel 113
6Ben74dgfh 224
7Barry142dgfh 4575
8Bonk156jg 657546
9Bob98hj 47
10DanTRUE8Ben8
11Diesel170fgh 5469
12DustinJoe 7810
13Barry 7911
1416tyh 8212
15TRUE13Dan13
1616tyh 8414
1716tyh 8515
18Dan 8616
Match Names
Cell Formulas
RangeFormula
E3:F18E3=IF(COUNTIF(A3:A12,H3:H18),CHOOSE({1,2},TRUE,I3:I18),"")
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,061
Members
449,206
Latest member
Healthydogs

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