Need a formula

ahmad08

New Member
Joined
Aug 9, 2017
Messages
21
Hi Excel Experts,

I have list of 50,000 people, they have different amount of money in their account.

There is a required amount of money which always vary.

I want a formula by which I will enter only required amount and can find the person who has equal or more amount than required amount.

Below is link of my Excel Sheet.

Who has more or equal amount than required.xlsx - Google Drive

Thanks in Advance for your kind support.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
apply a filter to your list, then use the filter to select
 
Upvote 0
Let A:B house people and money they have.

Let D1 house a required amount.

In D2 just enter:

=COUNTIFS(B2:B1000,">="&D2)

In D3 control+shift+enter, not just enter, and copy down:

=IF(ROWS(D$3:D3)>D$2,"",INDEX($A$2:$A$1000,SMALL(IF($B$2:$B$1000>=D$1,ROW($A$2:$A$1000)-ROW($A$2)+1),ROWS(D$3:D3))))
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,093
Latest member
dbomb1414

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