Jump to content
Server Maintenance This Week. ×

Simple Script to set minimum and maximum commissions on a sale


This topic is 3997 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have commissions that range from a few pennies to hundreds of dollars.

I calculated the commissions with a simple formula and it gives me the commission amounts.

I want to set a minimum commission of, say $15 and a maximum commission of $75.

I used this: If ( BRBW Comm < 15; 15 ) and got all commissions < 15 to be set at 15.

However, I wasn't able to add to that the part about if the commission is > 75, set all those to $75.

Not sure what to use the Case or the If statement.

Also, I would like to learn more about using scripts.

Can you suggest a good resource for quickly learning scripting formulas?

Thanks very much!

David

Link to comment
Share on other sites

Try =

Case (

commission < 15 ; 15 ;

commission > 75 ; 75 ;

commission

)




or =




Min ( Max ( 15 ; commission ) ; 75 )






---

BTW, this is a calculation, not a script - and it could be done all in the same field, say =




Min ( Max ( 15 ; <your commission formula> ) ; 75 )

Edited by comment
  • Like 1
Link to comment
Share on other sites

  • 5 months later...

Hi,

 

I've been using this:

 

Case (
BRBW Comm < 15 ; 15;
BRBW Comm > 75 ; 75;
/* Else */ BRBW Comm
)

 

But I want to change it to this:

 

If price is $0 to $15 commission is $5

$15-$30, $7.50

$30-$50, $10

etc.

 

and then when I get to $250 I want it to be a percent and not a fixed $ value:

 

$250-$500, 15%

$500-$1000, 20%

>$1000, 25%

 

Not sure how to up these ranges.

 

Thanks for your help!

 

David

Link to comment
Share on other sites

Case (
	price < 0 ; "?" ;	// error
	price ≤ 15 ; 5 ;
	price ≤ 30 ; 7.5 ;
	price ≤ 50 ; 10 ;
	// ...
	price ≤ 250 ; 30 ;	// value "30" for example
	price ≤ 500 ; price * .15 ;
	price ≤ 1000 ; price * .2 ;
	/* Else */ price * .25
)
Link to comment
Share on other sites

  • 3 months later...

This topic is 3997 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.