IF statements

pbolli1

New Member
Joined
Aug 2, 2016
Messages
7
Hi,

The company I work for is having me create an interactive excel sheet. I know that this is probably going to be using an if statement but I cant figure out how to make this work. Basically what this is supposed to do, is if you type in the number of participants in one cell, the fee will pop up in the other cell. This is to show clients what they will be paying.

The fees are below

1-15 participants = $2500
16-50 participants = $2500 plus $70 for each participant over 15
51-100 participants = $4950 plus $65 for each participant over 50
101-500 participants = $8200 plus $60 for each participant over 100
501-1,000 participants = $32,200 plus $55 for each participant over 500
1,001+ participants = $59,700 plus $50 for each participant over 1,000

any help is much appreciated, I've been trying to figure this out forever, Thanks!!!!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Should it be Cummulative ?
i.e., if it was say 55 should the answer be
4950+(65*5)
OR
2500+2500+(70*35)+4950+(65*5)
 
Last edited:
Upvote 0
How's this?

Excel 2010
ABCDE
1ParticipantsFeesParticipantsFees
200555275
312500
4165300
5515275
61018200
750132200
8100159700

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

Worksheet Formulas
CellFormula
E2=LOOKUP(D2,A2:A8,B2:B8)
B4=IF(D2>15,2500+(D2-15)*70,2500)
B5=IF(D2>50,4950+(D2-50)*65,4950)
B6=IF(D2>100,8200+(D2-100)*60,8200)
B7=IF(D2>500,32200+(D2-500)*55,32200)
B8=IF(D2>1000,59700+(D2-1000)*50,59700)

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

<tbody>
</tbody>
 
Upvote 0
Try:

ABCDEF
1ParticipantsBase RateRate per extra individualNumber of IndividualsFees
2125000555275
316250070
451495065
5101820060
65013220055
710015970050

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

Worksheet Formulas
CellFormula
F2=VLOOKUP(E2,A2:C7,2)+(E2-LOOKUP(E2,A2:A7)+1)*VLOOKUP(E2,A2:C7,3)

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

<tbody>
</tbody>



Columns A:C is just your table. You can change this at any time and the formula will adapt. Then put the Number of participants in E2, and F2 will show the fee.
 
Upvote 0
Try something like this


Unknown
ABCDEF
1122500ParticipantsFeeFee Per Over
2202850125000
355527516250070
4120940051495065
560037700101820060
61200697005013220055
710015970050
Sheet3
Cell Formulas
RangeFormula
B1=IFERROR(LOOKUP(A1,$D$2:$E$7)+(A1-LOOKUP(A1,$D$2:$D$7)+1)*LOOKUP(A1,$D$2:$F$7),0)
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

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