Forgot a formula

mduntley

Board Regular
Joined
May 23, 2015
Messages
133
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
For some reason, i am forgetting to do a formula in Excel 365. I simplify my workbook to show on this page. I am trying to find F2 in column c, and only return a true value.


Look Morty, I am a excel table
ABCDFG
1id #procedure external idXNew Sheet
2747200000229636796367720000022
37492100000793925FALSE
47492100000893926FALSE
57494000001796367940000017
Sheet3
Cell Formulas
RangeFormula
G2:G5G2=IF(F2=C2:C5,B2:B5)
Dynamic array formulas.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Do you mean you want to return all values from B if C =F2?
 
Upvote 0
Yes. This is what i want

all.xml
FG
1New Sheet
2963677.2E+08
39.4E+08
4
5
Sheet3
 
Upvote 0
In that case, try
Excel Formula:
=FILTER(B2:B5,C2:C5=F2,"")
 
Upvote 0
Crap, I forgot to include something. I need to filter include the 74. This is the updated table


all.xml
ABCDEFGH
1id #procedure external idXid #New Sheet
2747.2E+089636774963677.2E+08
3749.21E+08939259.4E+08
4749.21E+0893926
5749.4E+0896367
Sheet3
 
Upvote 0
Ok, how about
Excel Formula:
=FILTER(B2:B5,(C2:C5=G2)*(A2:A5=F2),"")
 
Upvote 0
Solution
That does work, but I am wondering if my table is to big for the filter function. the table array that i am doing is 35,000+ rows and all of the result is returning as a n/a
 
Upvote 0
Do you mean you are getting a #N/A error?
 
Upvote 0
In that case your data probably has #N/A errors in it, as that formula will not return that error otherwise.
 
Upvote 0

Forum statistics

Threads
1,203,632
Messages
6,056,452
Members
444,866
Latest member
cr130

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