Find the highest result in a range of formulas

Nigeljones

New Member
Joined
Apr 26, 2013
Messages
26
Office Version
  1. 365
Platform
  1. Windows
I have a range of cells that have formulas in them that give a number as a result. I want to find the highest number. When I use MAX, the end result is always 0 as it is looking at the formula and not the result.
 
I need to get the highest number in the following cells B:5 to B:10, F:5 to F:10 and J:5 to J:10. If the answer i say 14 it tells me that their are 14 acts from which I can time the section. I have a formula in there which is COUNT which works well but when there are duos or trios the timing is out because 1 act can be 3 people.
 
Upvote 0

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
When I put MAX(B5:B10) into my excel sheet it only produces 0 as the result. What could cause this
 
Upvote 0
Are you putting it on the same sheet ?
What cell is it going in ?
 
Upvote 0
When I put MAX(B5:B10) into my excel sheet it only produces 0 as the result. What could cause this
I assume Max is return 0 because there is no number in B5:B10 (only text which appear as number) Check with istext
 
Upvote 0
I have tried putting the max function directly under the range , i have formatted the cells as numbers still only getting 0. You seemed to get a result in the mini sheet
 
Upvote 0
I have tried putting the max function directly under the range , i have formatted the cells as numbers still only getting 0. You seemed to get a result in the mini sheet
Had you checked with istext ? (text which appear as number can not be converted into a number by changing formating)

Copy B5:B10 Paste as value in blank cell then check with istext
 
Upvote 0
Columns M and N were identical
Then I completed the following:
- Copied a blank cell Control C
- Selected the range N4:N8
- Paste Paste Special Add
The Formula now yields the correct Max.


T202101b.xlsm
MN
1
2
3Text
42000020,000.00
550005,000.00
65050.00
72020.00
83030.00
9
10020,000.00
6b
Cell Formulas
RangeFormula
M10:N10M10=MAX(M4:M9)
 
Upvote 0
So you can try it either way .changing Text to number in original Data
Before you try this make a copy of workbook.
Type 1 in any blank cell => Copy => Select the range which you want to change => paste special => value and multiply => Ok


or
Make sure Clear the cells first in where you want to put formula then (including formating )
=AGGREGATE(14,6,((B5:B10)*1),1)
=AGGREGATE(14,6,((F5:f10)*1),1)
=AGGREGATE(14,6,((J5:J10)*1),1)
 
Upvote 0
You can also use Data Text to Column then last choice is General
It will convert Text to Values
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,764
Members
448,991
Latest member
Hanakoro

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