Formula Assistance

jstevens
GoldLounger
Posts: 2631
Joined: 26 Jan 2010, 16:31
Location: Southern California

Formula Assistance

Post by jstevens »

I am trying to determine the correct formula based on whether or not an individual is full-time or part-time and termination month.

The attached workbook provides the details and expected results. I'm just not sure how to formulate it.

Thanks for taking a look,
John
EL.sample.xls
You do not have the required permissions to view the files attached to this post.
Regards,
John

User avatar
HansV
Administrator
Posts: 78631
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Formula Assistance

Post by HansV »

In D15:

=SUMPRODUCT(($B9:$B12="Full-Time")*(D9:D12>0))+SUMPRODUCT(($B9:$B12="FullPart-Time")*(D9:D12>0))/2

Fill right to J15.
Last edited by HansV on 01 Jul 2010, 19:29, edited 1 time in total.
Reason: to correct mistake (fortunately John caught it)
Best wishes,
Hans

jstevens
GoldLounger
Posts: 2631
Joined: 26 Jan 2010, 16:31
Location: Southern California

Re: Formula Assistance

Post by jstevens »

Hans,

Just a minor correction:
=SUMPRODUCT(($B9:$B12="Full-Time")*(D9:D12>0))+SUMPRODUCT(($B9:$B12="Part-Time")*(D9:D12>0))/2


Thanks,
John
Regards,
John

User avatar
HansV
Administrator
Posts: 78631
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Formula Assistance

Post by HansV »

Sorry about that, forgot to adjust the second part.
Best wishes,
Hans

edoc intelligence
NewLounger
Posts: 1
Joined: 02 Jul 2010, 05:17

Re: Formula Assistance

Post by edoc intelligence »

Thanks HansV and jstevens....that is exactly what I was looking for!