IF Function and Drop Down List Calculation

QueueRealEstate

New Member
Joined
Mar 1, 2020
Messages
3
Office Version
  1. 365
Platform
  1. MacOS
I am trying to do a calculation with the IF function that will allow for a commission calculation to take place depending on the transaction type. Here in BC, I am a real estate agent and want to have a calculation based on who is representing whom. For example, the agent representing the buyer will receive the below commission

Commission for the first $100,000 to be paid 3.25% and the balance to paid at 1.15% (Buying Agent)

Commission for the first $100,00 to be paid 3.78% and the balance to be paid at 1.35% (Selling Agent).

If I am representing John Doe and use the drop down list and choose "Buying" then calculate the commission based on the selling price of the property and the above percentage levels. Then the same for choosing "Seller" from the drop down list and do the above criteria.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Welcome to the forum
Try this

Where A1 contains selling price and B1 contains either "Buying" or "Seller"

=(B1="Buying")*((MIN(A1,100000)*0.0325+(A1>100000)*(A1-100000)*0.0115))+(B1="Seller")*((MIN(A1,100000)*0.0378+(A1>100000)*(A1-100000)*0.0135))
 
Upvote 0
Welcome to the forum
Try this

Where A1 contains selling price and B1 contains either "Buying" or "Seller"

=(B1="Buying")*((MIN(A1,100000)*0.0325+(A1>100000)*(A1-100000)*0.0115))+(B1="Seller")*((MIN(A1,100000)*0.0378+(A1>100000)*(A1-100000)*0.0135))
Welcome to the forum
Try this

Where A1 contains selling price and B1 contains either "Buying" or "Seller"

=(B1="Buying")*((MIN(A1,100000)*0.0325+(A1>100000)*(A1-100000)*0.0115))+(B1="Seller")*((MIN(A1,100000)*0.0378+(A1>100000)*(A1-100000)*0.0135))


Yongle, thank you!
 
Upvote 0

Forum statistics

Threads
1,215,616
Messages
6,125,862
Members
449,266
Latest member
davinroach

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