Data validation to percent discount, Help

Squirrel8056

New Member
Joined
Jan 13, 2013
Messages
3
I am doing a membership formula to calculate their rate they pay and how much they have paid to total out to how much they still owe. We give a 10% discount if have purchased a memership before the new year.

[TABLE="class: grid, width: 500, align: center"]
<TBODY>[TR]
[TD][/TD]
[TD]e[/TD]
[TD]f[/TD]
[TD]g[/TD]
[TD]h[/TD]
[TD]i[/TD]
[TD]j[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]Rate type[/TD]
[TD]full price[/TD]
[TD]10% discount[/TD]
[TD]customer price[/TD]
[TD]paid[/TD]
[TD]owe[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]INIVIDUAL MEMBER[/TD]
[TD]$700.00[/TD]
[TD]YES[/TD]
[TD]$630.00[/TD]
[TD]$430.00[/TD]
[TD]$200.00[/TD]
[/TR]
</TBODY>[/TABLE]




I used a data validation list for the rate type and =VLOOKUP to get the FULL PRICE. I used another data balidation for the YES OR NO for the discount. I am lost after that i think im over thinking it. I have been trying a =IF fomula to get if the customer has the 10% discount or not. looks like this =if(g7=YES,[f7*.9],[f7]). is there a different fomula to do this formula or is the IF formula the right way to do this
 
Last edited:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
If instead of YES you use logical TRUE in G7, you could just put the following in H7:

=F7-(F7*G7*0.1)

So, if G7 is FALSE, the quantity in parentheses is zero and no discount is taken.
 
Upvote 0
The formula you have used is quite suffceint and easy. I would use "" around YES.
 
Upvote 0
So i cannot just select individual member from the data validation to show 700 then select yes or no for it to bring the percent into effect?
 
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,274
Members
452,628
Latest member
dd2

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