Cell stays the same if condition is true, regardless of factor changes

Tricks

New Member
Joined
Jul 6, 2015
Messages
1
So I have a page designed to help me pay large sums of money back to someone by giving them a percentage of what I earn each week. The parts I am concerned with look roughly like this:

Self Input
Title
Formula


[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD][/TD]
[TD="align: right"]% to pay each week:[/TD]
[TD]10%[/TD]
[/TR]
[TR]
[TD]Week Total[/TD]
[TD]Amount to pay[/TD]
[TD]Paid?[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$10 (A3*C$1$)[/TD]
[TD]Paid[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$10 (A4*C$1$)[/TD]
[TD]Paid[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$10 (A5*C$1$)[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]








Once I have written "paid" into the cell it subtracted the "amount to pay" from the amount that I owe the person.

What I would like to do is at any point change the "% to pay each week" without it altering any "Amount to pay" that has "paid" written next to it. So that if in the previous table I was to change the 10% to 20% it would look like this:


[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD][/TD]
[TD="align: right"]
% to pay each week:
[/TD]
[TD]20%[/TD]
[/TR]
[TR]
[TD]Week Total[/TD]
[TD]Amount to pay[/TD]
[TD]Paid?[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$10[/TD]
[TD]Paid[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$10[/TD]
[TD]Paid[/TD]
[/TR]
[TR]
[TD]$100[/TD]
[TD]$20 (A5*C$1$)[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]








Is this at all possible without having to delete the formula's already in the column and replacing them with what I want them to stay as?

Thanks for any help
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Those previous values where "paid" is present must be converted from formulas to values, either by manually selecting them then Copy>Pastespecial Values, or if you are willing to use macros a change event could be coded to automatically convert the formulas to values when you enter "paid" in column C.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,971
Members
452,371
Latest member
Frana

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