Conditional Formulae

SpookyNoodle

New Member
Joined
Oct 16, 2017
Messages
2
Hey all,


I'm making a spreadsheet for the users on my Discord server, so they can identify fanartists who accept commissions, and calculate which prices they want.


https://docs.google.com/spreadsheets/d/1skPQhzpjgW2dogUINUCV47Pv-TBFdcKxdZ9NsMdjObY/edit?usp=sharing


I'm providing a google docs link so that you don't have to download my file.


As you can see, at the top, there is a spot where the user would put in the number of desired characters, and the pricing in the sheet would update to reflect that.


For most artists, it's relatively easy.
Code:
=20+(4*($B$1-1))
is for $4 for extra character,
Code:
=30*(1+(0.5*($B$1-1)))
is for +50% per extra character. Those are easy, and I've already got them figured out.


HOWEVER, some artists only have a charge for extra characters after a certain number. For example 1-2 characters is the same, but 3 characters is the 1-2 character price + whatever.


So, to make a more specific example:


IF $B$1=1, 2, 3, 4, then the formula is
Code:
=30


but if $B$1>4, then the formula is
Code:
=30*(1+(0.5*($B$1-4)))


I know what I'd like, but I have no idea how to input that info into Excel/Google sheets.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Cross posted https://www.excelforum.com/excel-fo...1257063-conditional-formulae.html#post5029841

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,525
Members
448,969
Latest member
mirek8991

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