Need help with a formula to exclude the last row with a data

icecreampie

New Member
Joined
May 28, 2024
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
So, I'm currently using =LARGE($H$39:$H$76;I11) to take a data for like a top 10 for biggest percentage, is there any way to make it like into from row h39 to like 1000 and just ignore the last cell row with a data so when the new data is filled in that row it just ignore the last filled data is the total and it will skewed the result because it will include the total as the total ?
 

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 like this:

=LARGE($H$39:$H$1000;I11 + 1)
 
Upvote 1
Solution
ARRAY formula
Excel Formula:
=LARGE($H$39:INDEX($H$39:$H$100,MATCH(FALSE,$H$39:$H$100<>"",0)-2),I11)
To enter ARRAY formula
Copy and paste the formula in cell
Press F2
Press Ctrl+Shift+Enter together
Excel covers the formula with {}.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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