Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Need additional help

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default Need additional help

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Need additional help

my formula right now reads =if(7000-(c27+d27+e27)<0,0,7000-(c27+d27+e27))

column c represents 1st qtr wages
column d represents 2nd qtr wages
column e represents 3rd qtr wages

so if 7000- c+d+e is less then zero it inputs zero
but if 7000-c+d+e is greater then zero I need it to input the number in
column (in this case) column e
You see the cut of is 7000 once an employee hits that max the tax stops but
untill they hit that you pay tax on the amount made in that qtr unless it
exceeds 7000 or if for instance they made 2000 in column c 4000 in column d
and 3000 in column e - the tax would then based on 1000 dollars
(2000+4000+3000 is 9000 so 2000 of the 3000 is in excess of the total 7000
for the year in that case I would want it to say 1000 -

I am not sure this is even possible to do in a formula all contained in the
same column - Thanks for any help

"Dave F" wrote:

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Need additional help

Hi pamela,
Try this...
=IF((C2+D2+E2)<=7000,0,(C2+D2+E2)-7000)
--
Alan L


"Pamela Jean" wrote:

my formula right now reads =if(7000-(c27+d27+e27)<0,0,7000-(c27+d27+e27))

column c represents 1st qtr wages
column d represents 2nd qtr wages
column e represents 3rd qtr wages

so if 7000- c+d+e is less then zero it inputs zero
but if 7000-c+d+e is greater then zero I need it to input the number in
column (in this case) column e
You see the cut of is 7000 once an employee hits that max the tax stops but
untill they hit that you pay tax on the amount made in that qtr unless it
exceeds 7000 or if for instance they made 2000 in column c 4000 in column d
and 3000 in column e - the tax would then based on 1000 dollars
(2000+4000+3000 is 9000 so 2000 of the 3000 is in excess of the total 7000
for the year in that case I would want it to say 1000 -

I am not sure this is even possible to do in a formula all contained in the
same column - Thanks for any help

"Dave F" wrote:

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Need additional help

I think I mis-interpreted your question. Are you saying the employees pay
taxes only on the first $7000, but they have to pay them in the Qtr earned?
Example... Dave earns $4000 in Qtr1, Pays taxes on $4000 - earns $2000 in Qtr
2, pays taxes on $2000 - earns $3000 in Qtr 3, pays taxes on $1000 - earns
$2000 in Qtr 4, pays no tax.
--
Alan L


"Pamela Jean" wrote:

my formula right now reads =if(7000-(c27+d27+e27)<0,0,7000-(c27+d27+e27))

column c represents 1st qtr wages
column d represents 2nd qtr wages
column e represents 3rd qtr wages

so if 7000- c+d+e is less then zero it inputs zero
but if 7000-c+d+e is greater then zero I need it to input the number in
column (in this case) column e
You see the cut of is 7000 once an employee hits that max the tax stops but
untill they hit that you pay tax on the amount made in that qtr unless it
exceeds 7000 or if for instance they made 2000 in column c 4000 in column d
and 3000 in column e - the tax would then based on 1000 dollars
(2000+4000+3000 is 9000 so 2000 of the 3000 is in excess of the total 7000
for the year in that case I would want it to say 1000 -

I am not sure this is even possible to do in a formula all contained in the
same column - Thanks for any help

"Dave F" wrote:

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Need additional help

That is it in a nut shell

this is the formula I have right now -

=if(7000-(c27+d27+e27)<0,0,(or(7000-c27+d27+e27)<7000,E27,(or(7000-c27+d27+e27)7000,7000,)))))

it works fine for when it needs to say zero just doesn't work the rest of
the way - it says True or false

TRUE


Thanks for your help

"Lindy1" wrote:

I think I mis-interpreted your question. Are you saying the employees pay
taxes only on the first $7000, but they have to pay them in the Qtr earned?
Example... Dave earns $4000 in Qtr1, Pays taxes on $4000 - earns $2000 in Qtr
2, pays taxes on $2000 - earns $3000 in Qtr 3, pays taxes on $1000 - earns
$2000 in Qtr 4, pays no tax.
--
Alan L


"Pamela Jean" wrote:

my formula right now reads =if(7000-(c27+d27+e27)<0,0,7000-(c27+d27+e27))

column c represents 1st qtr wages
column d represents 2nd qtr wages
column e represents 3rd qtr wages

so if 7000- c+d+e is less then zero it inputs zero
but if 7000-c+d+e is greater then zero I need it to input the number in
column (in this case) column e
You see the cut of is 7000 once an employee hits that max the tax stops but
untill they hit that you pay tax on the amount made in that qtr unless it
exceeds 7000 or if for instance they made 2000 in column c 4000 in column d
and 3000 in column e - the tax would then based on 1000 dollars
(2000+4000+3000 is 9000 so 2000 of the 3000 is in excess of the total 7000
for the year in that case I would want it to say 1000 -

I am not sure this is even possible to do in a formula all contained in the
same column - Thanks for any help

"Dave F" wrote:

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Need additional help

I think there a couple of ways to go about it...
(1) If you input the quarterly incomes in col's C, D, E, & F and want to
show the taxable amount for the current quarter in col G, you will have to
have a cell where you input a date, and then use an IF(AND) function to look
at the date and the amount in each quarter.
(2) If you input the quarterly incomes in col's C, D, E, & F and can show
the taxable amount for each quarter in col's G, H, I, & J, the formula's will
be a lot easier. I can play with it some more tomorrow. Let me know which way
you want to go. Sometimes IF functions can be a pretty good challange.
--
Alan L


"Pamela Jean" wrote:

That is it in a nut shell

this is the formula I have right now -

=if(7000-(c27+d27+e27)<0,0,(or(7000-c27+d27+e27)<7000,E27,(or(7000-c27+d27+e27)7000,7000,)))))

it works fine for when it needs to say zero just doesn't work the rest of
the way - it says True or false

TRUE


Thanks for your help

"Lindy1" wrote:

I think I mis-interpreted your question. Are you saying the employees pay
taxes only on the first $7000, but they have to pay them in the Qtr earned?
Example... Dave earns $4000 in Qtr1, Pays taxes on $4000 - earns $2000 in Qtr
2, pays taxes on $2000 - earns $3000 in Qtr 3, pays taxes on $1000 - earns
$2000 in Qtr 4, pays no tax.
--
Alan L


"Pamela Jean" wrote:

my formula right now reads =if(7000-(c27+d27+e27)<0,0,7000-(c27+d27+e27))

column c represents 1st qtr wages
column d represents 2nd qtr wages
column e represents 3rd qtr wages

so if 7000- c+d+e is less then zero it inputs zero
but if 7000-c+d+e is greater then zero I need it to input the number in
column (in this case) column e
You see the cut of is 7000 once an employee hits that max the tax stops but
untill they hit that you pay tax on the amount made in that qtr unless it
exceeds 7000 or if for instance they made 2000 in column c 4000 in column d
and 3000 in column e - the tax would then based on 1000 dollars
(2000+4000+3000 is 9000 so 2000 of the 3000 is in excess of the total 7000
for the year in that case I would want it to say 1000 -

I am not sure this is even possible to do in a formula all contained in the
same column - Thanks for any help

"Dave F" wrote:

=IF(A1<7000,G2,7000)

Assumes the value you're checking is in A1. Adjust to suit your needs.

Dave
--
Brevity is the soul of wit.


"Pamela Jean" wrote:

Yesterday I posted this question and got 2 EXCELLENT replies but when I used
it I realized that I missed something in my question so I need to re-ask the
questu=ion with the additional info

my original question was "if 7000-c2-e2-g2 less then zero put zero in column
& if 7000-c2-e2-g2 is greater then zero put the actual sum in column

I need to have both in one column

Now that I tested the formula I realize that instead of the actual number
being the result of 7000-c2-e2-g2 I need to it be if less then 7000 enter the
number in column g2 and additonal if greater then 7000 enter only 7000. Is
this possible. I want to use this in a worksheet I use to figure the futa
tax - I have alot of employees so it would be great if I didn't have to
figure them all out manually and let excel do it - normally I end up
overwriting the formula's with the number I need to appear. Hope this makes
sense

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
SUMPRODUCT - Additional criteria Dewayne Excel Worksheet Functions 2 September 8th 06 06:43 PM
Inserting additional data into an existing cell? CSJ545 Excel Discussion (Misc queries) 4 November 22nd 05 01:28 PM
Saving an Excel document after moving additional worksheets to it SteveD62226 New Users to Excel 0 November 21st 05 06:56 PM
Additional file with no extension created during File Save As proc Peter Rooney Excel Discussion (Misc queries) 2 August 11th 05 02:48 PM
Additional Columns to be Searched Aviator Excel Discussion (Misc queries) 3 January 28th 05 11:27 PM


All times are GMT +1. The time now is 10:02 PM.

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"