=sum/if questins

linuxuser

New Member
Joined
May 11, 2011
Messages
14
I am trying to find a formula that will do this.
(sorry cant post the sheet right now)
A1- $56,423.00
A2- $29,589.00
A3- $58,139.00
B1- =sum(A1+A2+A3)
So B1 shows $144,151.00

I want C1 to have a formula that will have if B1 is equal to $100,000 or more to subtract the $100,000 to just show the $44,151.00.
In D1 I want it to show that there was a sum equal to $100,000 exactly with the remainder being shown in C1.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Welcome to the board.

I think the two formulae you want are:

C1:
Code:
=IF(B1>100,000,C1-100,000,C1)
and D1:
Code:
=IF(B1>100,000,100,000,"")
 
Upvote 0
You guys are soo helpful thank you very much! that worked perfectly! I was surprised how fast I got a response.
 
Upvote 0

Forum statistics

Threads
1,224,551
Messages
6,179,480
Members
452,915
Latest member
hannnahheileen

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