Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Need help creating formula for given data

I have develped a spreadsheet to assist me in my stock trading. I have one
column that I need to set up to calculate the commission rate. It took me a
couple of years to get the basic calculations information figured out back in
1998 and it has helped me a great deal when used on all my accounts. But, I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 287
Default Need help creating formula for given data

With total price in A2 and number of shares in B2

=IF(A2="","",7+(A2*5%7)*MAX(0,B2-1000)*0.005)

"Need Assistance! Please Help!" wrote:

I have develped a spreadsheet to assist me in my stock trading. I have one
column that I need to set up to calculate the commission rate. It took me a
couple of years to get the basic calculations information figured out back in
1998 and it has helped me a great deal when used on all my accounts. But, I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Need help creating formula for given data

Unfortunately your formula did not work.

I'll should have been more specific. First, I am using MS Exel 2007. The
formula I need:

I have total shares listed in cell G2. The total cost of the purchase is in
cell V2. Now, the commission is standard at $7.00, but if I multiply total
cost by 5% and it exceeds $7.00, then commission is $7.00 plus $0.005 for
every share over the initial 1000 shares.

"daddylonglegs" wrote:

With total price in A2 and number of shares in B2

=IF(A2="","",7+(A2*5%7)*MAX(0,B2-1000)*0.005)

"Need Assistance! Please Help!" wrote:

I have develped a spreadsheet to assist me in my stock trading. I have one
column that I need to set up to calculate the commission rate. It took me a
couple of years to get the basic calculations information figured out back in
1998 and it has helped me a great deal when used on all my accounts. But, I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Need help creating formula for given data

Unfortunately your formula did not work. I should have been more specific.
First, I am using MS Excel 2007. The Information follows:

I have total shares in cell G2. I have total cost of purchase in cell V2.
The standard commission is $7.00, but if I multiply the total cost of
purchase by 5% and it exceeds the $7.00, then the commission is $7.00 plus
$0.005 per share after the intial 1000 shares.

"Don Guillett" wrote:

One way
=MAX(7,7+IF(G31000,(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
I have develped a spreadsheet to assist me in my stock trading. I have one
column that I need to set up to calculate the commission rate. It took me
a
couple of years to get the basic calculations information figured out back
in
1998 and it has helped me a great deal when used on all my accounts. But,
I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Need help creating formula for given data

Try it this way where g2 is the purchase price and g3 is the number of shs.

=MAX(7,7+IF(AND(G2140,G31000),(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
Unfortunately your formula did not work. I should have been more specific.
First, I am using MS Excel 2007. The Information follows:

I have total shares in cell G2. I have total cost of purchase in cell V2.
The standard commission is $7.00, but if I multiply the total cost of
purchase by 5% and it exceeds the $7.00, then the commission is $7.00 plus
$0.005 per share after the intial 1000 shares.

"Don Guillett" wrote:

One way
=MAX(7,7+IF(G31000,(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
I have develped a spreadsheet to assist me in my stock trading. I have
one
column that I need to set up to calculate the commission rate. It took
me
a
couple of years to get the basic calculations information figured out
back
in
1998 and it has helped me a great deal when used on all my accounts.
But,
I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the
total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Need help creating formula for given data

Formula somewhat worked. Where did you come up with the 140 in the string?

"Don Guillett" wrote:

Try it this way where g2 is the purchase price and g3 is the number of shs.

=MAX(7,7+IF(AND(G2140,G31000),(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
Unfortunately your formula did not work. I should have been more specific.
First, I am using MS Excel 2007. The Information follows:

I have total shares in cell G2. I have total cost of purchase in cell V2.
The standard commission is $7.00, but if I multiply the total cost of
purchase by 5% and it exceeds the $7.00, then the commission is $7.00 plus
$0.005 per share after the intial 1000 shares.

"Don Guillett" wrote:

One way
=MAX(7,7+IF(G31000,(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
I have develped a spreadsheet to assist me in my stock trading. I have
one
column that I need to set up to calculate the commission rate. It took
me
a
couple of years to get the basic calculations information figured out
back
in
1998 and it has helped me a great deal when used on all my accounts.
But,
I
still lack the expertise in some calculation functions. I would greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the
total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Need help creating formula for given data


somewhat???
140 already explained

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
Formula somewhat worked. Where did you come up with the 140 in the string?

"Don Guillett" wrote:

Try it this way where g2 is the purchase price and g3 is the number of
shs.

=MAX(7,7+IF(AND(G2140,G31000),(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
Unfortunately your formula did not work. I should have been more
specific.
First, I am using MS Excel 2007. The Information follows:

I have total shares in cell G2. I have total cost of purchase in cell
V2.
The standard commission is $7.00, but if I multiply the total cost of
purchase by 5% and it exceeds the $7.00, then the commission is $7.00
plus
$0.005 per share after the intial 1000 shares.

"Don Guillett" wrote:

One way
=MAX(7,7+IF(G31000,(G3-1000)*0.005))

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Need Assistance! Please Help!"
m wrote in message
...
I have develped a spreadsheet to assist me in my stock trading. I
have
one
column that I need to set up to calculate the commission rate. It
took
me
a
couple of years to get the basic calculations information figured
out
back
in
1998 and it has helped me a great deal when used on all my accounts.
But,
I
still lack the expertise in some calculation functions. I would
greatly
appreciate anyones assistance. Given information follows:

Commision rate is equal to $7.00. If though by multiplying 5% of the
total
price, that figure exceeds the $7.00 standard rate, then additional
commission is $0.005 per share that exceeds 1000 shares.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help Creating A Formula Joe Gieder Excel Worksheet Functions 2 August 7th 07 10:53 PM
Creating a formula by using data in another file Mindy Excel Worksheet Functions 2 February 28th 06 03:31 PM
I need help creating a formula Kim Excel Discussion (Misc queries) 11 November 19th 05 08:01 PM
Need help creating a formula to summarize data! Dorn Excel Worksheet Functions 6 November 11th 05 08:19 PM
Creating a graphical formula from a set of data rmellison Charts and Charting in Excel 1 October 17th 05 11:35 AM


All times are GMT +1. The time now is 06:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"