Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a range of values that intentionally include #N/A (for charting
purposes). When I reference this range in a MIN or MAX formula, it returns #N/A. How do I ignore the #N/A values in this range? |
#2
![]() |
|||
|
|||
![]()
To ignore #N/A values in a range when using a MIN or MAX formula, you can use the IFERROR function. Here's how:
Note: This same process can be used for the MAX function as well.
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try these array formulas** :
Min: =MIN(IF(ISNUMBER(A1:A10),A1:A10)) Max: =MAX(IF(ISNUMBER(A1:A10),A1:A10)) ** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER. -- Biff Microsoft Excel MVP "sasquatch" wrote in message ... I have a range of values that intentionally include #N/A (for charting purposes). When I reference this range in a MIN or MAX formula, it returns #N/A. How do I ignore the #N/A values in this range? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Brilliant!
Thanks much! "T. Valko" wrote: Try these array formulas** : Min: =MIN(IF(ISNUMBER(A1:A10),A1:A10)) Max: =MAX(IF(ISNUMBER(A1:A10),A1:A10)) ** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER. -- Biff Microsoft Excel MVP "sasquatch" wrote in message ... I have a range of values that intentionally include #N/A (for charting purposes). When I reference this range in a MIN or MAX formula, it returns #N/A. How do I ignore the #N/A values in this range? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "sasquatch" wrote in message ... Brilliant! Thanks much! "T. Valko" wrote: Try these array formulas** : Min: =MIN(IF(ISNUMBER(A1:A10),A1:A10)) Max: =MAX(IF(ISNUMBER(A1:A10),A1:A10)) ** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER. -- Biff Microsoft Excel MVP "sasquatch" wrote in message ... I have a range of values that intentionally include #N/A (for charting purposes). When I reference this range in a MIN or MAX formula, it returns #N/A. How do I ignore the #N/A values in this range? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ignore text in formula | Excel Worksheet Functions | |||
Ignore #N/A in a formula | Excel Discussion (Misc queries) | |||
Ignore #N/A in a formula | Excel Discussion (Misc queries) | |||
Ignore Text for Formula | Excel Discussion (Misc queries) | |||
How can I ignore an #N/A value in a =SUM() formula? | Excel Worksheet Functions |