Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Formula - if low=1; if med=2; if hi=3

Hi- I have a column of data that has text of either L, M, or H. I am trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Formula - if low=1; if med=2; if hi=3

Where does the "open" and "closed" come into the calculation?
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------

"PTimo" wrote in message
...
Hi- I have a column of data that has text of either L, M, or H. I am trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,726
Default Formula - if low=1; if med=2; if hi=3

You count the L with

=COUNTIF(G$2:G$41,"L")

but I don't get why you need it. Your formula works okay?

--
---
HTH

Bob

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



"PTimo" wrote in message
...
Hi- I have a column of data that has text of either L, M, or H. I am
trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!



  #4   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Formula - if low=1; if med=2; if hi=3

Take a look at the Data SubTotals feature.........it should do what you
want, and produce a nice looking report.......

Vaya con Dios,
Chuck, CABGx3



"PTimo" wrote:

Hi- I have a column of data that has text of either L, M, or H. I am trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Formula - if low=1; if med=2; if hi=3

The formula works because I've manually keyed it in a value for each
instance. Is there a formula that would do that automatically?

Thank you for your response -

"Bob Phillips" wrote:

You count the L with

=COUNTIF(G$2:G$41,"L")

but I don't get why you need it. Your formula works okay?

--
---
HTH

Bob

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



"PTimo" wrote in message
...
Hi- I have a column of data that has text of either L, M, or H. I am
trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Formula - if low=1; if med=2; if hi=3

I am trying to track issue resolution, including level of priority (L,M,H)
and status (open/closed).

Thanks,
Paula

"RagDyeR" wrote:

Where does the "open" and "closed" come into the calculation?
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------

"PTimo" wrote in message
...
Hi- I have a column of data that has text of either L, M, or H. I am trying
to summarize totals from each category. I have a separate column where I
have manually coded each low as 1, med as 2, and hi as 3.

The "new" "open" and "closed" is calculated by the following formula:
=SUM(IF((F$2:F$41="New")*(G$2:G$41="L"),H$2:H$41))
which is why I think I need to return a value for the L, M, and H but
perhaps there is a better formula to use?

LOW new -
open 20.00
closed 7.00
MED new -
open 11.00
closed 2.00
HI new -
open -
closed -

Any recommendations? Thanks for your help!



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
Reusing formula Tony29 Excel Discussion (Misc queries) 7 September 7th 06 03:34 AM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM


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