I'm trying to create a formula that will calculate commission based on text drop down menu. There are multiple selections and two commission rates. I realize I could create another column but I'm trying to keep everything as compact as possible.
For example.
Column C called item type contains my drop down menu.
The items in the menu are stored in AB8-AB11
Sold column is K
and Commission column is L.
The selections in the drop down menu are Car, Motorcycle, Boat with commission percentage being 20% for car, 15% for motorcycle and 10% for boat.
I'm trying to do this
If item type = "Car" than commission = sold premium * 20%
If item type = "motorcycle" than commission = sold premium * 15%
if item type = boat than commission = sold premium*10%
I have gotten it to work for one selection, say car by entering =if(c8="car",k8*20%), just can't figure out how to add multiple choices.
Thank you for your help
For example.
Column C called item type contains my drop down menu.
The items in the menu are stored in AB8-AB11
Sold column is K
and Commission column is L.
The selections in the drop down menu are Car, Motorcycle, Boat with commission percentage being 20% for car, 15% for motorcycle and 10% for boat.
I'm trying to do this
If item type = "Car" than commission = sold premium * 20%
If item type = "motorcycle" than commission = sold premium * 15%
if item type = boat than commission = sold premium*10%
I have gotten it to work for one selection, say car by entering =if(c8="car",k8*20%), just can't figure out how to add multiple choices.
Thank you for your help