IF + COUNTIFS formula

Sunshine8790

Board Regular
Joined
Jun 1, 2021
Messages
71
Office Version
  1. 365
Platform
  1. Windows
I have a column that totals the amounts of 31 other columns based on value in those cells.
It works great, but there are so many rows of data that looking at a bunch of 0s for all the cells that have no data to return is eye boggling.

I'd like to edit the formula to include the "IF" function to return "" (blank) - or even "N/A" instead of 0 when there is no data.
I'm not sure how. I keep trying but I keep getting errors, so I'm looking for help.

This is my original formula I want to add the IF statement to:

Excel Formula:
=COUNTIFS(B5:AF5,"V")+COUNTIFS(B5:AF5,"P")+COUNTIFS(B5:AF5,"O")+COUNTIFS(B5:AF5,"L")+COUNTIFS(B5:AF5,"B")+COUNTIFS(B5:AF5,"J")+COUNTIFS(B5:AF5,"F")+COUNTIFS(B5:AF5,"M")+COUNTIFS(B5:AF5,"T")+COUNTIFS(B5:AF5,"H")/2

Anyone able to edit that for me to return a blank instead of a 0?
Much appreciated in advance. :)
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Just set this in settings or conditional formatting. Doing by formula will have you updating all the formulas or update as you add more.


Hide or display all zero values on a worksheet

  1. Click File > Options > Advanced.
  2. Under Display options for this worksheet, select a worksheet, and then do one of the following:
    • To display zero (0) values in cells, check the Show a zero in cells that have zero value check box.
    • To display zero (0) values as blank cells, uncheck the Show a zero in cells that have zero value check box.

This is where you can have it display N/A if you want.
  1. Select the cells that contain the zero (0) values that you want to hide.
  2. You can press Ctrl+1, or on the Home tab, click Format > Format Cells.
    Format Cells on the Home tab
  3. Click Number > Custom.
  4. In the Type box, type 0;-0;;@, and then click OK.

Or just update number format of all cells:

0;-0;;@
 
Last edited:
Upvote 0
I would go with cell formatting, but with a formula you can use
Excel Formula:
=IFERROR(1/(1/(SUM(COUNTIFS(B5:AF5,{"V","O","L","B","J","F","M","T"}))+COUNTIFS(B5:AF5,"H")/2)),"")
 
Upvote 0
Solution
Just set this in settings or conditional formatting. Doing by formula will have you updating all the formulas or update as you add more.




This is where you can have it display N/A if you want.


Or just update number format of all cells:

0;-0;;@

Thank you noveske! :) This worked to get rid of the 0s.
Eventually I decided that the lack of any data looked incomplete, so I wound up using conditional formatting to just highlight all cells with a value greater than 0, but your solution did work for my original plan.
 
Upvote 0
I would go with cell formatting, but with a formula you can use
Excel Formula:
=IFERROR(1/(1/(SUM(COUNTIFS(B5:AF5,{"V","O","L","B","J","F","M","T"}))+COUNTIFS(B5:AF5,"H")/2)),"")

Thank you Fluff :)
I am just seeing your response. I did end up using conditional formatting, so I no longer need the formula. Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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