Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a list of rows with columns A1 to H1. Based on some criteria, I need
to sum from A1 to H1 or E3 to H3 or any possibility. If I store the beginning cell in a cell like J1 or J3, how can I use the value of the cell and not the cell itself? I want something like sum(actual value of cell(J1):ending cell)) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use index
=SUM(INDEX(A1:H3,1,5):INDEX(A1:H3,1,8)) replace 1,5 and 1, 8 with cells where you put the numbers the above will sum E1:H1, 1 is the row number and 5 starting column (E) and 8 ending (H) it's better to use this instead of indirect or offset since it is non-volatile -- Regards, Peo Sjoblom "KMR" wrote in message ... I have a list of rows with columns A1 to H1. Based on some criteria, I need to sum from A1 to H1 or E3 to H3 or any possibility. If I store the beginning cell in a cell like J1 or J3, how can I use the value of the cell and not the cell itself? I want something like sum(actual value of cell(J1):ending cell)) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(INDIRECT(J1&":H1"))
-- HTH Bob Phillips (remove nothere from the email address if mailing direct) "KMR" wrote in message ... I have a list of rows with columns A1 to H1. Based on some criteria, I need to sum from A1 to H1 or E3 to H3 or any possibility. If I store the beginning cell in a cell like J1 or J3, how can I use the value of the cell and not the cell itself? I want something like sum(actual value of cell(J1):ending cell)) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
How can i get an If formula in excel to edit another cell? | Excel Worksheet Functions | |||
converting formula from lotus.123 to excel | Excel Worksheet Functions | |||
How do I view the actual numeric value of a formula in Excel 2002. | Excel Worksheet Functions |