How do I write a FILTER formula that displays x,y coordinates based on a value from an adjacent cell?

arthurz11

Board Regular
Joined
Nov 9, 2007
Messages
158
Office Version
  1. 2021
Platform
  1. Windows
How do I write the FILTER formula that will give me the results in cell range A9:B10?

Picture1.png
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
like this ?

Excel Formula:
=FILTER(A2:B6,C2:C6>=1)

1724976481463.png
 
Upvote 0
Solution
Works great!! Thanks a million!
However, I forgot to mentioned that when column C is all zeros it should display a blank. I get a ######. How should I revised the formula =FILTER(A2:B6,C2:C6>=1) so it displays nothing and not the ####?
 
Upvote 0
However, I forgot to mentioned that when column C is all zeros it should display a blank. I get a ######. How should I revised the formula =FILTER(A2:B6,C2:C6>=1) so it displays nothing and not the ####?
try with :

Excel Formula:
=FILTER(A2:B6,C2:C6>=1,"")
or
Excel Formula:
=IFERROR(FILTER(A2:B6,C2:C6>=1),"")
 
Upvote 0

Forum statistics

Threads
1,221,517
Messages
6,160,266
Members
451,635
Latest member
nithchun

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