#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shearries
 
Posts: n/a
Default Muliple formulas

I need to formulate this,
the sum of multiple cells minus the sum of different mutiple cells divided
by the difference between to times.
Does anyone know how to do this?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Niek Otten
 
Posts: n/a
Default Muliple formulas

=(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)

Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets should be,
etc. Even better: tell us what problem you're trying to solve

--
Kind regards,

Niek Otten

"Shearries" wrote in message ...
|I need to formulate this,
| the sum of multiple cells minus the sum of different mutiple cells divided
| by the difference between to times.
| Does anyone know how to do this?
|


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shearries
 
Posts: n/a
Default Muliple formulas

I'm sorry, I'm new to this. I need a cell to give me a per hour answer
for example
sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
difference between time in D6,D5


"Niek Otten" wrote:

=(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)

Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets should be,
etc. Even better: tell us what problem you're trying to solve

--
Kind regards,

Niek Otten

"Shearries" wrote in message ...
|I need to formulate this,
| the sum of multiple cells minus the sum of different mutiple cells divided
| by the difference between to times.
| Does anyone know how to do this?
|



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Niek Otten
 
Posts: n/a
Default Muliple formulas

=(SUM(E5:G5)-SUM(E4:G4))/(D6-D5)

Be aware that times are stored as fractions of a day. So if D6 is 11:00 and D5 is 9:00, D6-D5 is not 2, but 083333333..........
If you want that to be hours, multiply by 24:

=(SUM(E5:G5)-SUM(E4:G4))/((D6-D5)*24)

--
Kind regards,

Niek Otten


"Shearries" wrote in message ...
| I'm sorry, I'm new to this. I need a cell to give me a per hour answer
| for example
| sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
| difference between time in D6,D5
|
|
| "Niek Otten" wrote:
|
| =(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)
|
| Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets should
be,
| etc. Even better: tell us what problem you're trying to solve
|
| --
| Kind regards,
|
| Niek Otten
|
| "Shearries" wrote in message ...
| |I need to formulate this,
| | the sum of multiple cells minus the sum of different mutiple cells divided
| | by the difference between to times.
| | Does anyone know how to do this?
| |
|
|
|


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shearries
 
Posts: n/a
Default Muliple formulas

THANKS, I'll try that.

"Niek Otten" wrote:

=(SUM(E5:G5)-SUM(E4:G4))/(D6-D5)

Be aware that times are stored as fractions of a day. So if D6 is 11:00 and D5 is 9:00, D6-D5 is not 2, but 083333333..........
If you want that to be hours, multiply by 24:

=(SUM(E5:G5)-SUM(E4:G4))/((D6-D5)*24)

--
Kind regards,

Niek Otten


"Shearries" wrote in message ...
| I'm sorry, I'm new to this. I need a cell to give me a per hour answer
| for example
| sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
| difference between time in D6,D5
|
|
| "Niek Otten" wrote:
|
| =(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)
|
| Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets should
be,
| etc. Even better: tell us what problem you're trying to solve
|
| --
| Kind regards,
|
| Niek Otten
|
| "Shearries" wrote in message ...
| |I need to formulate this,
| | the sum of multiple cells minus the sum of different mutiple cells divided
| | by the difference between to times.
| | Does anyone know how to do this?
| |
|
|
|





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shearries
 
Posts: n/a
Default Muliple formulas

Hi, me again. I gave me an answer in time and need a rounded whole number.
What did I do wrong?

Sorry to keep bugging

"Niek Otten" wrote:

=(SUM(E5:G5)-SUM(E4:G4))/(D6-D5)

Be aware that times are stored as fractions of a day. So if D6 is 11:00 and D5 is 9:00, D6-D5 is not 2, but 083333333..........
If you want that to be hours, multiply by 24:

=(SUM(E5:G5)-SUM(E4:G4))/((D6-D5)*24)

--
Kind regards,

Niek Otten


"Shearries" wrote in message ...
| I'm sorry, I'm new to this. I need a cell to give me a per hour answer
| for example
| sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
| difference between time in D6,D5
|
|
| "Niek Otten" wrote:
|
| =(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)
|
| Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets should
be,
| etc. Even better: tell us what problem you're trying to solve
|
| --
| Kind regards,
|
| Niek Otten
|
| "Shearries" wrote in message ...
| |I need to formulate this,
| | the sum of multiple cells minus the sum of different mutiple cells divided
| | by the difference between to times.
| | Does anyone know how to do this?
| |
|
|
|



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Niek Otten
 
Posts: n/a
Default Muliple formulas

<What did I do wrong?

Nothing. Just FormatCellsNumber or General
Excel tries to be clever and as soon as time is involved in a calculation, it formats the result as time.

--
Kind regards,

Niek Otten


"Shearries" wrote in message ...
| Hi, me again. I gave me an answer in time and need a rounded whole number.
| What did I do wrong?
|
| Sorry to keep bugging
|
| "Niek Otten" wrote:
|
| =(SUM(E5:G5)-SUM(E4:G4))/(D6-D5)
|
| Be aware that times are stored as fractions of a day. So if D6 is 11:00 and D5 is 9:00, D6-D5 is not 2, but
083333333..........
| If you want that to be hours, multiply by 24:
|
| =(SUM(E5:G5)-SUM(E4:G4))/((D6-D5)*24)
|
| --
| Kind regards,
|
| Niek Otten
|
|
| "Shearries" wrote in message ...
| | I'm sorry, I'm new to this. I need a cell to give me a per hour answer
| | for example
| | sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
| | difference between time in D6,D5
| |
| |
| | "Niek Otten" wrote:
| |
| | =(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)
| |
| | Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets
should
| be,
| | etc. Even better: tell us what problem you're trying to solve
| |
| | --
| | Kind regards,
| |
| | Niek Otten
| |
| | "Shearries" wrote in message
...
| | |I need to formulate this,
| | | the sum of multiple cells minus the sum of different mutiple cells divided
| | | by the difference between to times.
| | | Does anyone know how to do this?
| | |
| |
| |
| |
|
|
|


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shearries
 
Posts: n/a
Default Muliple formulas

Thanks, my problem is solved

"Niek Otten" wrote:

<What did I do wrong?

Nothing. Just FormatCellsNumber or General
Excel tries to be clever and as soon as time is involved in a calculation, it formats the result as time.

--
Kind regards,

Niek Otten


"Shearries" wrote in message ...
| Hi, me again. I gave me an answer in time and need a rounded whole number.
| What did I do wrong?
|
| Sorry to keep bugging
|
| "Niek Otten" wrote:
|
| =(SUM(E5:G5)-SUM(E4:G4))/(D6-D5)
|
| Be aware that times are stored as fractions of a day. So if D6 is 11:00 and D5 is 9:00, D6-D5 is not 2, but
083333333..........
| If you want that to be hours, multiply by 24:
|
| =(SUM(E5:G5)-SUM(E4:G4))/((D6-D5)*24)
|
| --
| Kind regards,
|
| Niek Otten
|
|
| "Shearries" wrote in message ...
| | I'm sorry, I'm new to this. I need a cell to give me a per hour answer
| | for example
| | sum of E4,F4,G4 subtracted from the sum of E5,F5,G5 and the divided dy the
| | difference between time in D6,D5
| |
| |
| | "Niek Otten" wrote:
| |
| | =(SUM(A1:A10)-SUM(B1:B10))/(C2-C1)
| |
| | Just an example. But your question is not very precise. Maybe you can give some info on what cells, where the brackets
should
| be,
| | etc. Even better: tell us what problem you're trying to solve
| |
| | --
| | Kind regards,
| |
| | Niek Otten
| |
| | "Shearries" wrote in message
...
| | |I need to formulate this,
| | | the sum of multiple cells minus the sum of different mutiple cells divided
| | | by the difference between to times.
| | | Does anyone know how to do this?
| | |
| |
| |
| |
|
|
|



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
Formulas not recognizing new data malakingaso Excel Discussion (Misc queries) 1 February 8th 06 07:27 PM
Countif formulas change after doing a sort Bob Smith Excel Worksheet Functions 3 January 3rd 06 11:17 PM
Array Formulas take waaaay too long... belly0fdesire Excel Worksheet Functions 7 August 8th 05 10:11 PM
Problem with named formula's nathan Excel Worksheet Functions 0 January 21st 05 04:07 PM
calculating formulas for all workbooks in a folder Chad Excel Worksheet Functions 3 November 13th 04 05:22 PM


All times are GMT +1. The time now is 02:29 AM.

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"