Formula to increase a value by % based on two different types of data.

SMExcel

New Member
Joined
Jun 29, 2015
Messages
13
Hi All,

I am having trouble trying to work this one out. I can't figure out the formula that goes in the green cells highlighted below. In the green cells I want to increase the cost base of each property by the % from the data below, based on whether the property is allocated as a house/unit, and what postcode it belongs to. For example. Property 1's cost-base of $200k would increase by 3.5% as it's a house and has the postcode 3500. Therefore the amount in the green adjustment cell will be $7,000.

Really appreciate any feedback.

Cheers


<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
Property NamePostcodeCost BaseAdjustmentNew Adjusted Value
Property 1House3500200000
Property 2Unit3400300000
Proprety 3House3300400000

<colgroup><col style="width: 100px"><col width="100"><col width="100"><col width="100"><col width="100"><col width="131"></colgroup><tbody>
</tbody>

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
Data - Increase in Market Value

House35003.50%
Unit35002.00%
House 34003.00%
Unit34001.25%
House 33003.25%
Unit33001.75%

<colgroup><col style="width: 100px"><col width="100"><col width="100"></colgroup><tbody>
</tbody>
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If you change your table, Column names Postcode, house% and unit%
you could use =vlookup(postcode, PHU table, match(propertyType, PHU table headings,0),0)

vlookup to get the right row match or hlookup to get column.
 
Upvote 0
Is this what you were after?

Excel 2016 (Windows) 32 bit
ABCDEF
1Property NamePostcodeCost BaseAdjustmentNew Adjusted Value
2
3Property 1House35002000007000
4Property 2Unit34003000003750
5Proprety 3House330040000013000
6
7
8Data - Increase in Market Value%
9
10House35003,50%
11Unit35002,00%
12House34003,00%
13Unit34001,25%
14House33003,25%
15Unit33001,75%

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
E3=D3*SUMIFS($C$10:$C$15,$A$10:$A$15,B3,$B$10:$B$15,C3)
E4=D4*SUMIFS($C$10:$C$15,$A$10:$A$15,B4,$B$10:$B$15,C4)
E5=D5*SUMIFS($C$10:$C$15,$A$10:$A$15,B5,$B$10:$B$15,C5)

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0
To nardagus' reply -

That does work for the first two properties, but when I use the formula for property 3 it comes up as 0 in E5. It also comes up as 0 when I change the house postcode to 3400 or 3300, any idea why this might be happening?
 
Last edited:
Upvote 0
If you change your table, Column names Postcode, house% and unit%
you could use =vlookup(postcode, PHU table, match(propertyType, PHU table headings,0),0)

vlookup to get the right row match or hlookup to get column.

Can you please explain how the table should be layed out and i'll try work it around for the vlookup
 
Upvote 0
Hmmm. For Property3 Adjustment should be $13,000?
Then it works for me... Are you sure there is no error in a formula for this Property? Did you copy a formula from E3 to E4 and E5? If yes it should work...
 
Upvote 0
Property NameTypePostcodeCost BaseAdjustmentNew Adjusted Value
Property 1House3500200000=VLOOKUP(C2,$A$9:$C$11,MATCH(B2,$A$8:$C$8,0),0)
Property 2Unit3400300000=VLOOKUP(C3,$A$9:$C$11,MATCH(B3,$A$8:$C$8,0),0)
Proprety 3House3300400000=VLOOKUP(C4,$A$9:$C$11,MATCH(B4,$A$8:$C$8,0),0)
PostcodeHouseUnit
35003,50%2,00%
34003,00%1,25%
33003,25%1,75%

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,543
Members
449,316
Latest member
sravya

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