Formulas needed to find 1) # and 2) Round Up

mrb89

New Member
Joined
Apr 20, 2022
Messages
4
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I'm trying to add a function to the following formula

=INDEX('Income Rankings 2023-2024'!A5:A105,MATCH(M27,INDEX('Income Rankings 2023-2024'!B5:P105,,MATCH(M25,'Income Rankings 2023-2024'!B4:P4,0)),1))

M25 is Family size
M27 is Income

I know that If a family of 3 makes $1147.52, the ranking should be ranked at # 13. Because the family makes more than $1133 (rank 12), the family falls under Rank #13.





Please note that there are 2 tabs 1) Income Rankings 2) Income Calculator - that's why the formula shoes "Income Rankings"
1718942353233.png


1718942577683.png
 

Attachments

  • 1718942324526.png
    1718942324526.png
    23.1 KB · Views: 6

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Maybe this. Not tested.
Excel Formula:
=MATCH(M27,INDEX('Income Rankings 2023-2024'!B5:P105,0,MATCH(M25,'Income Rankings 2023-2024'!B4:P4,0)),1)+1
 
Upvote 0
Maybe:
(the - 0.00001, is because the +1 isn't valid for an exact match so I needed to clock an exact match back 1)
With Match if you want the next greatest the list needs to be sorted descending, so this is a workaround.

Excel Formula:
=INDEX('Income Rankings 2023-2024'!$A$4:$A$105,
                  MATCH(M27-0.00001,
                                     INDEX('Income Rankings 2023-2024'!$B$4:$P$105,
                                                     0,
                                                    MATCH(M25,'Income Rankings 2023-2024'!B4:P4,0)),
                                      1)+1)
 
Upvote 0

Forum statistics

Threads
1,221,602
Messages
6,160,739
Members
451,669
Latest member
Peaches000

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