Trying to do a calculation off null SumIfs

cjmueller08

New Member
Joined
Aug 28, 2009
Messages
17
Hello, have a basic some basic sumifs values I'm trying to return a value on and cannot get it to recognize the blanks or "-" returns from the sumifs. Example below. The Over/Under column should be mainly "No Payment" but I cannot get excel to recognize the "-" returns from the sumif formulas. Thanks in advance for any help!


Claimed Column Formula: =SUMIFS('PER75'!G:G,'PER75'!C:C,'Warranty Recover Template'!A5,'PER75'!G:G,">0")
Recovered Column Formula: =SUMIFS('PER75'!G:G,'PER75'!C:C,'Warranty Recover Template'!A5,'PER75'!G:G,"<0")

Over/Under Column Formula: =IF(C5="","No Payment",C5+B5) I've tried several scenarios but can't get this formula to recognize the blank or "-" cells.

Repair Order / Control #ClaimedRecoveredOver/UnderManufacturer
RO #Make
40000A$ 310.07$ -$ 310.07LEE
40001A$ 310.07$ (310.07)$ -LEE
40002A$ (310.07)$ -$ (310.07)LEE
40027A$ 1,649.32$ -$ 1,649.32LEE
40060A$ 521.70$ -$ 521.70LEE
40077A$ 5,285.66$ -$ 5,285.66DYN
40082A$ 1,483.55$ -$ 1,483.55DYN
40109A$ 687.50$ -$ 687.50ROS
40110A$ 701.62$ -$ 701.62DYN
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Try:
Excel Formula:
=IF(ISNUMBER(C5), C5+B5,"No Payment")
 
Upvote 0
With the table set with currency formatting, cell values should still be zero, even if it shows a dash, the dash is probably not recognisable in formulas:

=IF(C5=0,"No Payment",B5+C5)
 
Upvote 0

Forum statistics

Threads
1,215,314
Messages
6,124,204
Members
449,147
Latest member
sweetkt327

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