Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 61
Default Excel Spreadsheet

Hi

My last posting I had asked for help and when I used the formula they gave
me, I had said that it did not work. I did send another message to say that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00 00.00

I have to round down so if I have someone in A3_E and the years are 9.7 it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Excel Spreadsheet

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula they gave
me, I had said that it did not work. I did send another message to say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00 00.00

I have to round down so if I have someone in A3_E and the years are 9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 61
Default Excel Spreadsheet

Thanks Bob, but I did not explain myself very clearly.
I would like to create a formula that would add the
FTE data and put it into another spreadsheet.

There are 1300 employees on the Salary Grid and say I have
40 employees at A1_E 1 year and 46 employees at A1_E at
1.2 years. I have to combine them to read as 86 employee
A1_E at 1 year, the formula I am using now is
=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)*(D3:D1300),
So what I am looking for is where to put the greater than 1 but less than 2.
I tried =sumproduct(--(B3:B1300="A1_E"), --(C3:C1300=1,<=2)*(D3:D1300),
but it not working for me.

Thanks again for your help.

--
Newfie


"Bob Phillips" wrote:

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula they gave
me, I had said that it did not work. I did send another message to say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00 00.00

I have to round down so if I have someone in A3_E and the years are 9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Excel Spreadsheet

You certainly didn't. I would never have come anywhere near that with your
originaldescriptin.

=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)"),--(C3:C1300<2),D3:D1300)

or even

=sumproduct(--(B3:B1300="A1_E"),--(ROUNDDOWN(C3:C1300,0)=1),D3:D1300)



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
Thanks Bob, but I did not explain myself very clearly.
I would like to create a formula that would add the
FTE data and put it into another spreadsheet.

There are 1300 employees on the Salary Grid and say I have
40 employees at A1_E 1 year and 46 employees at A1_E at
1.2 years. I have to combine them to read as 86 employee
A1_E at 1 year, the formula I am using now is
=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)*(D3:D1300),
So what I am looking for is where to put the greater than 1 but less than
2.
I tried =sumproduct(--(B3:B1300="A1_E"), --(C3:C1300=1,<=2)*(D3:D1300),
but it not working for me.

Thanks again for your help.

--
Newfie


"Bob Phillips" wrote:

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula they
gave
me, I had said that it did not work. I did send another message to say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00 00.00

I have to round down so if I have someone in A3_E and the years are
9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 61
Default Excel Spreadsheet

So sorry for the way I explained myself. But thank you very much for your
response.

thanks again.
--
Newfie


"Bob Phillips" wrote:

You certainly didn't. I would never have come anywhere near that with your
originaldescriptin.

=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)"),--(C3:C1300<2),D3:D1300)

or even

=sumproduct(--(B3:B1300="A1_E"),--(ROUNDDOWN(C3:C1300,0)=1),D3:D1300)



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
Thanks Bob, but I did not explain myself very clearly.
I would like to create a formula that would add the
FTE data and put it into another spreadsheet.

There are 1300 employees on the Salary Grid and say I have
40 employees at A1_E 1 year and 46 employees at A1_E at
1.2 years. I have to combine them to read as 86 employee
A1_E at 1 year, the formula I am using now is
=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)*(D3:D1300),
So what I am looking for is where to put the greater than 1 but less than
2.
I tried =sumproduct(--(B3:B1300="A1_E"), --(C3:C1300=1,<=2)*(D3:D1300),
but it not working for me.

Thanks again for your help.

--
Newfie


"Bob Phillips" wrote:

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula they
gave
me, I had said that it did not work. I did send another message to say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00 00.00

I have to round down so if I have someone in A3_E and the years are
9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Excel Spreadsheet

No problem, makes for an interesting ride. Are you sorted now?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
So sorry for the way I explained myself. But thank you very much for your
response.

thanks again.
--
Newfie


"Bob Phillips" wrote:

You certainly didn't. I would never have come anywhere near that with
your
originaldescriptin.

=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)"),--(C3:C1300<2),D3:D1300)

or even

=sumproduct(--(B3:B1300="A1_E"),--(ROUNDDOWN(C3:C1300,0)=1),D3:D1300)



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Thanks Bob, but I did not explain myself very clearly.
I would like to create a formula that would add the
FTE data and put it into another spreadsheet.

There are 1300 employees on the Salary Grid and say I have
40 employees at A1_E 1 year and 46 employees at A1_E at
1.2 years. I have to combine them to read as 86 employee
A1_E at 1 year, the formula I am using now is
=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)*(D3:D1300),
So what I am looking for is where to put the greater than 1 but less
than
2.
I tried
=sumproduct(--(B3:B1300="A1_E"), --(C3:C1300=1,<=2)*(D3:D1300),
but it not working for me.

Thanks again for your help.

--
Newfie


"Bob Phillips" wrote:

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula
they
gave
me, I had said that it did not work. I did send another message to
say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E
F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00
00.00

I have to round down so if I have someone in A3_E and the years are
9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 61
Default Excel Spreadsheet

Yes thank you.

But I will have more questions in the future.

thanks again
--
Newfie


"Bob Phillips" wrote:

No problem, makes for an interesting ride. Are you sorted now?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Newfie809" wrote in message
...
So sorry for the way I explained myself. But thank you very much for your
response.

thanks again.
--
Newfie


"Bob Phillips" wrote:

You certainly didn't. I would never have come anywhere near that with
your
originaldescriptin.

=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)"),--(C3:C1300<2),D3:D1300)

or even

=sumproduct(--(B3:B1300="A1_E"),--(ROUNDDOWN(C3:C1300,0)=1),D3:D1300)



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Thanks Bob, but I did not explain myself very clearly.
I would like to create a formula that would add the
FTE data and put it into another spreadsheet.

There are 1300 employees on the Salary Grid and say I have
40 employees at A1_E 1 year and 46 employees at A1_E at
1.2 years. I have to combine them to read as 86 employee
A1_E at 1 year, the formula I am using now is
=sumproduct(--(B3:B1300="A1_E"),--(C3:C1300=1)*(D3:D1300),
So what I am looking for is where to put the greater than 1 but less
than
2.
I tried
=sumproduct(--(B3:B1300="A1_E"), --(C3:C1300=1,<=2)*(D3:D1300),
but it not working for me.

Thanks again for your help.

--
Newfie


"Bob Phillips" wrote:

=INT(C4)*1.75

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Newfie809" wrote in message
...
Hi

My last posting I had asked for help and when I used the formula
they
gave
me, I had said that it did not work. I did send another message to
say
that
I was wrong and that it did work.

I would like somemore help if anyone can help me with this one.

It's the same spreadsheet and I could use some more input. Thanks
A B C D E
F
1. Name Grid Years FTE Amount Allowance
2. John A1_E 10.0 1.0 00.00 00.00
3. Jane A2_E 9.5 .50 00.00 00.00
4. Judy A3_E 9.7 .75 00.00 00.00
5. Bill A3_E 9.7 1.0 00.00
00.00

I have to round down so if I have someone in A3_E and the years are
9.7
it
should be 1.75 at 9 years service.

Can anyone help.

thanks




Newfie









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
Import excel spreadsheet into an excel spreadsheet kfletchb Excel Worksheet Functions 2 August 4th 06 12:49 AM
In Excel I want to copy text from spreadsheet to spreadsheet Kris Excel Worksheet Functions 3 June 9th 06 07:58 PM
convert ms works spreadsheet to excel spreadsheet on pda d Excel Discussion (Misc queries) 0 February 20th 06 10:40 AM
conversion of MS Works Spreadsheet to Excel 2002 Spreadsheet Kellie Excel Discussion (Misc queries) 1 March 24th 05 06:31 PM
Is there a way to insert a formula, password or macro in an excel spreadsheet that will automatically delete the spreadsheet? oil_driller Excel Discussion (Misc queries) 1 February 8th 05 09:34 AM


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