How to get maximum and minimum values in a range of cells which has #NA

adonisolivar

New Member
Joined
Apr 4, 2013
Messages
1
Hi I need your help on how to get the maximum or minimum values if your having #NA.
This #NA is a result of my formula in a cell I used. Example if I have A1:Z1 range of data.
I want to get the maximum values, How to get the max? Thank you so much.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Welcome to the board.

I would recommend adjusting the formulas that return #N/A so that they don't return the error.

If you have XL 2007+ You can use something like
=IFERROR(yourformula,"")

so if your formula is a vlookup like
=VLOOKUP(A1,Sheet2!A:B,2,FALSE)

Then change it to
=IFERROR(VLOOKUP(A1,Sheet2!A:B,2,FALSE),"")


Then your MAX and MIN Functions will have no issue on the results of those formulas.
 
Upvote 0

Forum statistics

Threads
1,224,606
Messages
6,179,862
Members
452,948
Latest member
UsmanAli786

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