Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Buckwheat
 
Posts: n/a
Default Beginner needs help w/first work project

I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten Excel to figure
out and print the correct answer for profit and the profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't remember how to get it
to look at a table and based off of the profit percent, I need it to tell me
how much the sales persons' commission rate for that sale would be. I need
it to give me the % and also the amount that it equals. If I can get some
help on this, I have a step 2 problem to figure out. Thanks very much in
advance for help with this, this project is due Thursday in order to be
presented "working" to the sales staff on Friday morning so I am pretty
desperate for some help. This is my first excel project ever so...thanks!
  #2   Report Post  
Biff
 
Posts: n/a
Default

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay

Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten

Excel to figure
out and print the correct answer for profit and the

profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't

remember how to get it
to look at a table and based off of the profit percent, I

need it to tell me
how much the sales persons' commission rate for that sale

would be. I need
it to give me the % and also the amount that it equals.

If I can get some
help on this, I have a step 2 problem to figure out.

Thanks very much in
advance for help with this, this project is due Thursday

in order to be
presented "working" to the sales staff on Friday morning

so I am pretty
desperate for some help. This is my first excel project

ever so...thanks!
.

  #3   Report Post  
Buckwheat
 
Posts: n/a
Default

Biff, thanks you so much for your help. I mentioned there is a step 2 to
this problem. Not only do I need for excel to figure out the sales
commission % and the amount that it equals, I have 4 total tables. One for
sales commission, one for the sales mgr (who gets a cut), one for the product
buyer who gets a cut and one for the senior buyer who may also get a cut. So
Excel needs to figure out everyones' cut in the profit...the percentages for
each and the amount it equals for each....is this possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay

Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten

Excel to figure
out and print the correct answer for profit and the

profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't

remember how to get it
to look at a table and based off of the profit percent, I

need it to tell me
how much the sales persons' commission rate for that sale

would be. I need
it to give me the % and also the amount that it equals.

If I can get some
help on this, I have a step 2 problem to figure out.

Thanks very much in
advance for help with this, this project is due Thursday

in order to be
presented "working" to the sales staff on Friday morning

so I am pretty
desperate for some help. This is my first excel project

ever so...thanks!
.


  #4   Report Post  
Mike
 
Posts: n/a
Default

I'm not sure that I understand the problem, but I think you just need to use
the vlookup function 4 times. If you provided more info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned there is a step 2 to
this problem. Not only do I need for excel to figure out the sales
commission % and the amount that it equals, I have 4 total tables. One for
sales commission, one for the sales mgr (who gets a cut), one for the product
buyer who gets a cut and one for the senior buyer who may also get a cut. So
Excel needs to figure out everyones' cut in the profit...the percentages for
each and the amount it equals for each....is this possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay

Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten

Excel to figure
out and print the correct answer for profit and the

profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't

remember how to get it
to look at a table and based off of the profit percent, I

need it to tell me
how much the sales persons' commission rate for that sale

would be. I need
it to give me the % and also the amount that it equals.

If I can get some
help on this, I have a step 2 problem to figure out.

Thanks very much in
advance for help with this, this project is due Thursday

in order to be
presented "working" to the sales staff on Friday morning

so I am pretty
desperate for some help. This is my first excel project

ever so...thanks!
.


  #5   Report Post  
Buckwheat
 
Posts: n/a
Default

Mike,

do you have an email address I can send the file to you to show you more
specifically what I'm trying to do?

Thanks,
Buckwheat

"Mike" wrote:

I'm not sure that I understand the problem, but I think you just need to use
the vlookup function 4 times. If you provided more info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned there is a step 2 to
this problem. Not only do I need for excel to figure out the sales
commission % and the amount that it equals, I have 4 total tables. One for
sales commission, one for the sales mgr (who gets a cut), one for the product
buyer who gets a cut and one for the senior buyer who may also get a cut. So
Excel needs to figure out everyones' cut in the profit...the percentages for
each and the amount it equals for each....is this possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay
Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten
Excel to figure
out and print the correct answer for profit and the
profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't
remember how to get it
to look at a table and based off of the profit percent, I
need it to tell me
how much the sales persons' commission rate for that sale
would be. I need
it to give me the % and also the amount that it equals.
If I can get some
help on this, I have a step 2 problem to figure out.
Thanks very much in
advance for help with this, this project is due Thursday
in order to be
presented "working" to the sales staff on Friday morning
so I am pretty
desperate for some help. This is my first excel project
ever so...thanks!
.




  #6   Report Post  
Biff
 
Posts: n/a
Default

Hi!

You can send me your file and I'll have a look.


Biff
XLHelp<atcomcast<dotnet

-----Original Message-----
Mike,

do you have an email address I can send the file to you

to show you more
specifically what I'm trying to do?

Thanks,
Buckwheat

"Mike" wrote:

I'm not sure that I understand the problem, but I think

you just need to use
the vlookup function 4 times. If you provided more

info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned

there is a step 2 to
this problem. Not only do I need for excel to figure

out the sales
commission % and the amount that it equals, I have 4

total tables. One for
sales commission, one for the sales mgr (who gets a

cut), one for the product
buyer who gets a cut and one for the senior buyer who

may also get a cut. So
Excel needs to figure out everyones' cut in the

profit...the percentages for
each and the amount it equals for each....is this

possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the

Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists

the %
Profit scale and the corresponding Sales Pay Rate.

The
table should be in ascending order if there are

ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1

being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales

Pay
Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've

gotten
Excel to figure
out and print the correct answer for profit and

the
profit percent cell. Now
where I have sales pay rate and sales pay amt, I

can't
remember how to get it
to look at a table and based off of the profit

percent, I
need it to tell me
how much the sales persons' commission rate for

that sale
would be. I need
it to give me the % and also the amount that it

equals.
If I can get some
help on this, I have a step 2 problem to figure

out.
Thanks very much in
advance for help with this, this project is due

Thursday
in order to be
presented "working" to the sales staff on Friday

morning
so I am pretty
desperate for some help. This is my first excel

project
ever so...thanks!
.


.

  #7   Report Post  
Mike
 
Posts: n/a
Default

Yeah. Its

"Buckwheat" wrote:

Mike,

do you have an email address I can send the file to you to show you more
specifically what I'm trying to do?

Thanks,
Buckwheat

"Mike" wrote:

I'm not sure that I understand the problem, but I think you just need to use
the vlookup function 4 times. If you provided more info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned there is a step 2 to
this problem. Not only do I need for excel to figure out the sales
commission % and the amount that it equals, I have 4 total tables. One for
sales commission, one for the sales mgr (who gets a cut), one for the product
buyer who gets a cut and one for the senior buyer who may also get a cut. So
Excel needs to figure out everyones' cut in the profit...the percentages for
each and the amount it equals for each....is this possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay
Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten
Excel to figure
out and print the correct answer for profit and the
profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't
remember how to get it
to look at a table and based off of the profit percent, I
need it to tell me
how much the sales persons' commission rate for that sale
would be. I need
it to give me the % and also the amount that it equals.
If I can get some
help on this, I have a step 2 problem to figure out.
Thanks very much in
advance for help with this, this project is due Thursday
in order to be
presented "working" to the sales staff on Friday morning
so I am pretty
desperate for some help. This is my first excel project
ever so...thanks!
.


  #8   Report Post  
Mike
 
Posts: n/a
Default

Yeah, its


"Buckwheat" wrote:

Mike,

do you have an email address I can send the file to you to show you more
specifically what I'm trying to do?

Thanks,
Buckwheat

"Mike" wrote:

I'm not sure that I understand the problem, but I think you just need to use
the vlookup function 4 times. If you provided more info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned there is a step 2 to
this problem. Not only do I need for excel to figure out the sales
commission % and the amount that it equals, I have 4 total tables. One for
sales commission, one for the sales mgr (who gets a cut), one for the product
buyer who gets a cut and one for the senior buyer who may also get a cut. So
Excel needs to figure out everyones' cut in the profit...the percentages for
each and the amount it equals for each....is this possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists the %
Profit scale and the corresponding Sales Pay Rate. The
table should be in ascending order if there are ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1 being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like below:

Prod # Sold Cost Profit Profit % Sales Pay
Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and I've gotten
Excel to figure
out and print the correct answer for profit and the
profit percent cell. Now
where I have sales pay rate and sales pay amt, I can't
remember how to get it
to look at a table and based off of the profit percent, I
need it to tell me
how much the sales persons' commission rate for that sale
would be. I need
it to give me the % and also the amount that it equals.
If I can get some
help on this, I have a step 2 problem to figure out.
Thanks very much in
advance for help with this, this project is due Thursday
in order to be
presented "working" to the sales staff on Friday morning
so I am pretty
desperate for some help. This is my first excel project
ever so...thanks!
.


  #9   Report Post  
Biff
 
Posts: n/a
Default

OK, I got your file.

You need to redo all of your lookup tables.

This will take some time but I'll fix it for you!

Biff

-----Original Message-----
Hi!

You can send me your file and I'll have a look.


Biff
XLHelp<atcomcast<dotnet

-----Original Message-----
Mike,

do you have an email address I can send the file to you

to show you more
specifically what I'm trying to do?

Thanks,
Buckwheat

"Mike" wrote:

I'm not sure that I understand the problem, but I

think
you just need to use
the vlookup function 4 times. If you provided more

info i could possibly do
the same...


"Buckwheat" wrote:

Biff, thanks you so much for your help. I mentioned

there is a step 2 to
this problem. Not only do I need for excel to

figure
out the sales
commission % and the amount that it equals, I have 4

total tables. One for
sales commission, one for the sales mgr (who gets a

cut), one for the product
buyer who gets a cut and one for the senior buyer

who
may also get a cut. So
Excel needs to figure out everyones' cut in the

profit...the percentages for
each and the amount it equals for each....is this

possible? Thanks again in
advance.

"Biff" wrote:

Hi!

You want some type of Lookup formula to get the

Sales Pay
Rate.

Here's one type:

Create a table somewhere on your sheet that lists

the %
Profit scale and the corresponding Sales Pay Rate.

The
table should be in ascending order if there are

ranges
involved. For example:

Profit % Pay Rate %
0 10
5 15
10 20
15 25
20 30
25 35
30 40

Assume that table is in the range G2:H8, G1 and H1

being
headers, Profit % and Pay Rate %.

Then you could use a formula like this:

A1 = Prod #
B1 = Sold
C1 = Profit
D1 = Profit %
E1 = Sales Pay Rate formula:

=IF(D1="","",VLOOKUP(D1,G2:H8,2,1))

Biff

-----Original Message-----
I have created a spreadsheet that looks like

below:

Prod # Sold Cost Profit Profit %

Sales
Pay
Rate Sales Pay Amt


I type in the prod#,sold, and cost fields and

I've
gotten
Excel to figure
out and print the correct answer for profit and

the
profit percent cell. Now
where I have sales pay rate and sales pay amt, I

can't
remember how to get it
to look at a table and based off of the profit

percent, I
need it to tell me
how much the sales persons' commission rate for

that sale
would be. I need
it to give me the % and also the amount that it

equals.
If I can get some
help on this, I have a step 2 problem to figure

out.
Thanks very much in
advance for help with this, this project is due

Thursday
in order to be
presented "working" to the sales staff on Friday

morning
so I am pretty
desperate for some help. This is my first excel

project
ever so...thanks!
.


.

.

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
Find project start and end dates in a DB with many different proje AceWriter01 Excel Worksheet Functions 3 April 1st 05 03:58 AM
Adding Work Days only in a function? Mark Excel Worksheet Functions 4 March 29th 05 03:50 AM
4 Day Work Week in a formula EasleyK Excel Discussion (Misc queries) 1 January 29th 05 06:15 AM
Subtotal of Subtotal displays Grand Total in wrong row Thomas Born Excel Worksheet Functions 5 January 6th 05 01:46 PM
Change Path names in copied work book jheaney Excel Worksheet Functions 2 November 18th 04 07:29 PM


All times are GMT +1. The time now is 08:40 AM.

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

About Us

"It's about Microsoft Excel"