Filter Function return another col in a table

ManUBlueJay

Active Member
Joined
Aug 30, 2012
Messages
320
Office Version
  1. 365
Platform
  1. Windows
I would like to return the 3rd column of a table, filtered by the 1st column where all values in the 1st Column are equal to A1
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
are you still using 2016 - FILTER() function is not available on that version
please update profile

=FILTER(C:C, A:A=$A$1)
OR if you mean the text "A1" and NOT cell
=FILTER(C:C, A:A="A1")

i would prefer to use row reference
 
Upvote 0
you are welcome
you need to update your profile , solutions will depend on what version of excel -
 
Upvote 0
as you are showing 2 versions of excel - when you ask a question, you will need to say what version you want this to work
there are 100's of new functions since 2016 -
 
Upvote 0
One more quick quesion regarding filter, which I have in another scenario.
=FILTER(C:C, A:A="A1") but exclude any that appear in B:B
 
Upvote 0
=FILTER(C:C, (A:A="A1")*(B:B<>"A1"))
 
Upvote 0

Forum statistics

Threads
1,221,522
Messages
6,160,315
Members
451,637
Latest member
hvp2262

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