Add an amount on to membership, but not if already paying enough!

trickster1978

Board Regular
Joined
Oct 22, 2009
Messages
67
Hi,

I run a subscription club to a club. We are putting in place new pricing, as there is a huge amount of historical prices in there that we need to get back in line.

In summary, the new prices will be £40 per month. Some pay this already, so will hold that rate.. so pay a lot less... as low as £22 PM.

What I need to do is increase all rates in a spreadsheet by 10%... but within this take it to a MINIMUM of £30 and not increase the max of £40.

Bit of a newbie question probably.

Thanks for any help.

Sample

£40Keep
£35 Increase 10%
£34Increase 10%
£22Increase to Min £30

<tbody>
</tbody>
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Assuming your prices are numbers not text:
Excel Workbook
AB
1Old RateNew Rate
24040.00
33538.50
43437.40
52230.00
Sheet3
 
Upvote 0
This is brilliant- thank you.

I have just seen that there are actually a couple over £40... how can I keep the max to £40, so no increase if over?


Assuming your prices are numbers not text:
Sheet3

AB
1Old RateNew Rate
24040.00
33538.50
43437.40
52230.00

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:64px;"><col style="width:64px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
B2=IF(A2=40,40,IF(A2*1.1<=30,30,A2*1.1))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4
 
Upvote 0
You are welcome. To hold max to 40 try:

Code:
=IF(A2>=40,40,IF(A2*1.1<=30,30,A2*1.1))
 
Last edited:
Upvote 0
Hi,

I think this will give you more accurate results to cap it at 40.


Book1
AB
1Old RateNew Rate
24040
33538.5
43437.4
52230
63740
73840
83940
92530
103639.6
114240
Sheet16
Cell Formulas
RangeFormula
B2=IF(A2>=40/1.1,40,MAX(30,A2*1.1))
 
Last edited:
Upvote 0
You guys are awesome - thanks.

If I want to do NOTHING if over £40, what would I do?
i.e not cap and reduce.. but keep as is.. so a £40.50 stays at that, no reduction (it may be easier to give other credit than reduce the DD subscriptions)

Richard

Hi,

I think this will give you more accurate results to cap it at 40.

AB
1Old RateNew Rate
24040
33538.5
43437.4
52230
63740
73840
83940
92530
103639.6
114240

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet16

Worksheet Formulas
CellFormula
B2=IF(A2>=40/1.1,40,MAX(30,A2*1.1))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
You guys are awesome - thanks.

If I want to do NOTHING if over £40, what would I do?
i.e not cap and reduce.. but keep as is.. so a £40.50 stays at that, no reduction (it may be easier to give other credit than reduce the DD subscriptions)

Richard

Then we add another IF test in front:


Book1
AB
1Old RateNew Rate
24040
33538.5
43437.4
52230
63740
73840
83940
92530
103639.6
114242
1240.540.5
Sheet16
Cell Formulas
RangeFormula
B2=IF(A2>=40,A2,IF(A2>=40/1.1,40,MAX(30,A2*1.1)))
 
Upvote 0

Forum statistics

Threads
1,214,864
Messages
6,121,984
Members
449,058
Latest member
oculus

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