Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 38
Default If(And - multiple conditions

This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly salary
based on the start date in the appropriate month, and carries it forward for
the rest of the year. How do I incorporate an additional statement that also
looks at the "End Date" field, and will enter a zero in the last pay month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default If(And - multiple conditions

Let's change it to
name ann salary start date end date jan feb mar
joe $10,000.00 14-Jun 2-Oct 0 0 0

put this formula (ONE line) in e2 and copy across and down

=IF(AND(COLUMN(A1)=MONTH($C2),COLUMN(A1)<=MONTH($ D2)),DOLLAR($B2/12),0)


Does not attempt to use partial months pay.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly salary
based on the start date in the appropriate month, and carries it forward
for
the rest of the year. How do I incorporate an additional statement that
also
looks at the "End Date" field, and will enter a zero in the last pay
month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 38
Default If(And - multiple conditions

That did it and I thank you. I do however have to take in to account a half
month salary. I needn't worry about less than that. How can I build that in?

"Don Guillett" wrote:

Let's change it to
name ann salary start date end date jan feb mar
joe $10,000.00 14-Jun 2-Oct 0 0 0

put this formula (ONE line) in e2 and copy across and down

=IF(AND(COLUMN(A1)=MONTH($C2),COLUMN(A1)<=MONTH($ D2)),DOLLAR($B2/12),0)


Does not attempt to use partial months pay.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly salary
based on the start date in the appropriate month, and carries it forward
for
the rest of the year. How do I incorporate an additional statement that
also
looks at the "End Date" field, and will enter a zero in the last pay
month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 38
Default If(And - multiple conditions

Start or end the 15th of the month should give me 1/2 month increments in the
month the event occurs.

"Don Guillett" wrote:

Your company is cheap. What criteria do you have for the 1/2 month. Start
month/end month/both.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
That did it and I thank you. I do however have to take in to account a
half
month salary. I needn't worry about less than that. How can I build that
in?

"Don Guillett" wrote:

Let's change it to
name ann salary start date end date jan feb mar
joe $10,000.00 14-Jun 2-Oct 0 0 0

put this formula (ONE line) in e2 and copy across and down


=IF(AND(COLUMN(A1)=MONTH($C2),COLUMN(A1)<=MONTH($ D2)),DOLLAR($B2/12),0)


Does not attempt to use partial months pay.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly
salary
based on the start date in the appropriate month, and carries it
forward
for
the rest of the year. How do I incorporate an additional statement that
also
looks at the "End Date" field, and will enter a zero in the last pay
month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default If(And - multiple conditions

I repeat the question, which event?? start/end/both

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
Start or end the 15th of the month should give me 1/2 month increments in
the
month the event occurs.

"Don Guillett" wrote:

Your company is cheap. What criteria do you have for the 1/2 month. Start
month/end month/both.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
That did it and I thank you. I do however have to take in to account a
half
month salary. I needn't worry about less than that. How can I build
that
in?

"Don Guillett" wrote:

Let's change it to
name ann salary start date end date jan feb mar
joe $10,000.00 14-Jun 2-Oct 0 0 0

put this formula (ONE line) in e2 and copy across and down


=IF(AND(COLUMN(A1)=MONTH($C2),COLUMN(A1)<=MONTH($ D2)),DOLLAR($B2/12),0)


Does not attempt to use partial months pay.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly
salary
based on the start date in the appropriate month, and carries it
forward
for
the rest of the year. How do I incorporate an additional statement
that
also
looks at the "End Date" field, and will enter a zero in the last pay
month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 38
Default If(And - multiple conditions

Sorry - both

"Don Guillett" wrote:

I repeat the question, which event?? start/end/both

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
Start or end the 15th of the month should give me 1/2 month increments in
the
month the event occurs.

"Don Guillett" wrote:

Your company is cheap. What criteria do you have for the 1/2 month. Start
month/end month/both.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
That did it and I thank you. I do however have to take in to account a
half
month salary. I needn't worry about less than that. How can I build
that
in?

"Don Guillett" wrote:

Let's change it to
name ann salary start date end date jan feb mar
joe $10,000.00 14-Jun 2-Oct 0 0 0

put this formula (ONE line) in e2 and copy across and down


=IF(AND(COLUMN(A1)=MONTH($C2),COLUMN(A1)<=MONTH($ D2)),DOLLAR($B2/12),0)


Does not attempt to use partial months pay.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Micki" wrote in message
...
This is my spreadsheet:
C D H I J
Month Start Date End Date June July
5,821.83 1/1/08 5,821.83

I have a formula that looks at a start date and places the monthly
salary
based on the start date in the appropriate month, and carries it
forward
for
the rest of the year. How do I incorporate an additional statement
that
also
looks at the "End Date" field, and will enter a zero in the last pay
month,
and subsequent months for the rest of the year? My formula is:

=IF($C5="",0,IF($G5=--"6/30/2008",0,IF($G5<--"6/1/2008",$C5,IF(AND($G5<--"6/30/2008",$G5--"6/14/2008"),$C5/2,))))







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 or INDEX/MATCH for multiple conditions and multiple rec TravisB Excel Discussion (Misc queries) 21 March 16th 07 09:49 PM
How do I add multiple values that match multiple conditions? Joel Excel Discussion (Misc queries) 5 April 10th 06 01:32 PM
Multiple conditions and multiple return values Minerva Excel Worksheet Functions 3 February 16th 06 06:57 AM
Combining Text from multiple cells under multiple conditions KNS Excel Worksheet Functions 2 June 15th 05 11:00 PM
How to multiple conditions to validate more than 2 conditions to . Bhuvana Govind Excel Worksheet Functions 1 January 28th 05 07:07 PM


All times are GMT +1. The time now is 11:35 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"