adding across fields but want one field to that displays negatives toturn to zero.

paulfields4

New Member
Joined
Mar 20, 2015
Messages
10
So here is what I have thus far =iff(nz([1-30 days])+nz([31-60 days])-nz([consultfee])>0, 0,(nz([1-30 days])+nz([31-60 days])-nz([consultfee]))

That statement doesn't work though. The consultfee is the field that sometimes has negative numbers that I want to display as 0.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Two things:

1. It should be IIF, not IFF.

2. You have it set to return 0 if your calculation is greater than zero, not less than zero (change >0 to <0).
 
Upvote 0
Do you mean something like this:
Code:
[COLOR=#333333]Iif(Nz([consultfee],0)+0<=0,0,[/COLOR][COLOR=#333333][consultfee][/COLOR][COLOR=#333333])[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,221,893
Messages
6,162,662
Members
451,781
Latest member
DylantheD

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