Tom and Rons Pools
New Member
- Joined
- Apr 23, 2020
- Messages
- 23
- Office Version
- 365
- Platform
- Windows
I am looking for a few things here.
1st - if i input names in the H column under name. How do I get them to go to the name column in column B if they take more than 1 spot?
2nd - in c7 and c8 I want to know if there is a formula to create a deal based of spots taken. for example 1 spot = 5.50 per spot, but if you buy 3 spots its $5 per spot and if you buy 10 spots its $4.75 p/ spot. Something along those lines.
3rd - the current formula in c9 is a vlookup formula based on the c6. can i incorporate the values in c7 and c8 based off of how many spots people buy.
I know this may seem confusing but I will be happy to answer any questions you may have.
1st - if i input names in the H column under name. How do I get them to go to the name column in column B if they take more than 1 spot?
2nd - in c7 and c8 I want to know if there is a formula to create a deal based of spots taken. for example 1 spot = 5.50 per spot, but if you buy 3 spots its $5 per spot and if you buy 10 spots its $4.75 p/ spot. Something along those lines.
3rd - the current formula in c9 is a vlookup formula based on the c6. can i incorporate the values in c7 and c8 based off of how many spots people buy.
I know this may seem confusing but I will be happy to answer any questions you may have.
Book1 | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
1 | Last 3 Comps: | $ 600.00 | $ 445.00 | $ 525.00 | Spots | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ||||
2 | Average: | $ 523.33 | Price/p | $ 530.00 | $ 265.00 | $ 176.50 | $ 132.50 | $ 106.00 | $ 88.50 | $ 75.50 | $ 66.50 | ||||||
3 | RoundUp w/extras | $ 530.00 | |||||||||||||||
4 | |||||||||||||||||
5 | # of Spots: | 100 | |||||||||||||||
6 | $ p/spot: | $ 5.50 | |||||||||||||||
7 | $ p/spot (3 spots) | ||||||||||||||||
8 | $ p/spot (10 spots) | ||||||||||||||||
9 | |||||||||||||||||
10 | |||||||||||||||||
11 | # of Spots | Name | $/Spot | Name | Spots | Total | Paid | Source | Amt. | ||||||||
12 | 1 | $ 5.50 | Venmo | $ - | |||||||||||||
13 | 2 | $ 5.50 | PayPal | $ - | |||||||||||||
14 | 3 | $ 5.50 | Zelle | $ - | |||||||||||||
15 | 4 | $ 5.50 | CashApp | $ - | |||||||||||||
16 | 5 | $ 5.50 | |||||||||||||||
17 | 9 | $ 5.50 | |||||||||||||||
18 | 10 | $ 5.50 | |||||||||||||||
19 | 11 | $ 5.50 | |||||||||||||||
20 | 12 | $ 5.50 | |||||||||||||||
21 | 13 | $ 5.50 | |||||||||||||||
22 | 14 | $ 5.50 | |||||||||||||||
23 | 15 | $ 5.50 | |||||||||||||||
24 | 16 | $ 5.50 | |||||||||||||||
25 | 17 | $ 5.50 | |||||||||||||||
26 | 18 | $ 5.50 | |||||||||||||||
27 | 19 | $ 5.50 | |||||||||||||||
28 | 20 | $ 5.50 | |||||||||||||||
29 | 21 | $ 5.50 | |||||||||||||||
30 | 22 | $ 5.50 | |||||||||||||||
31 | 23 | $ 5.50 | |||||||||||||||
32 | 24 | $ 5.50 | |||||||||||||||
33 | 25 | $ 5.50 | |||||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H2:O2 | H2 | =MROUND($C$3/H1,0.5) |
C2 | C2 | =AVERAGE(C1:E1) |
C3 | C3 | =ROUNDUP(C2,0)+6 |
C6 | C6 | =VLOOKUP(C5,price_list[#All],2,0) |
O12:O15 | O12 | =SUMIF($K$12:$K$129,N12,$J$12:$J$129) |
A12:A16 | A12 | =VLOOKUP($C$5,Spots_List,ROW(B2),0) |
A17:A33 | A17 | =VLOOKUP($C$5,Spots_List,ROW(B10),0) |
C12:C33 | C12 | =IF(A12>0,$C$6,"") |
Named Ranges | ||
---|---|---|
Name | Refers To | Cells |
money_list | =price_list[Spots] | C6 |
Spot_dd | =Spots_List[Column1] | A12:A33 |
Spots | =Sheet1!$H$1:$AI$1 | H2 |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
C5 | List | =Spot_dd |
K12 | List | Venmo,PayPal,Zelle,CashApp |