#NUM! How to fix

Malcolm torishi

Board Regular
Joined
Apr 26, 2013
Messages
219
Does anyone know how to get fix an #NUM ! error so the cell is blank and not have this #NUM ! In . I have the following formula that puts this error in the cell
=IF(C7="-","",IF(C7="","",IF(ROW()-ROW($BA$6)-COUNTA($AA$7:$AA$32)>0,"",INDEX($C$7:$C$32,AGGREGATE(15,6,ROW($AA$7:$AA$32)-ROW($AA$6)/($AA$7:$AA$32=BB7),COUNTIF($BB7:$BB$26,BB7))))))
thank you if you can help
 

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
try

=iferror(IF(C7="-","",IF(C7="","",IF(ROW()-ROW($BA$6)-COUNTA($AA$7:$AA$32)>0,"",INDEX($C$7:$C$32,AGGREGATE(15,6,ROW($AA$7:$AA$32)-ROW($AA$6)/($AA$7:$AA$32=BB7),COUNTIF($BB7:$BB$26,BB7)))))),"")

Edit:
*note that excel will not view this cell as truly empty because of the formula so if you were running some type of vba or formula afterwards that detects blanks you may need to change the "" to " " and do a find and replace " " to ""
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,746
Members
449,050
Latest member
excelknuckles

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