Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to add a column of numbers, but some of the cells contain a
range ($800 - $1000) in them. Is there a formula / function, or do I need to split up the ranges. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What number would be added in that instance?
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Fyrfytr" wrote in message ... I would like to add a column of numbers, but some of the cells contain a range ($800 - $1000) in them. Is there a formula / function, or do I need to split up the ranges. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to add a cell containing "$300" with a cell containing
"$800-$1000" and have the cell containing the "sum" function show "$1100-$1400". Is this possible? "Bob Phillips" wrote: What number would be added in that instance? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Fyrfytr" wrote in message ... I would like to add a column of numbers, but some of the cells contain a range ($800 - $1000) in them. Is there a formula / function, or do I need to split up the ranges. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this solution
=SUM(A:A,IF(ISNUMBER(FIND("-",A1:A100)),--LEFT(A1:A100,FIND("-",A1:A100)-1)) )&"-"& SUM(A:A,IF(ISNUMBER(FIND("-",A1:A100)),--MID(A1:A100,FIND("-",A1:A100)+1,15) )) which is an array formula, it should be committed with Ctrl-Shift-Enter, not just Enter. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Fyrfytr" wrote in message ... I would like to add a cell containing "$300" with a cell containing "$800-$1000" and have the cell containing the "sum" function show "$1100-$1400". Is this possible? "Bob Phillips" wrote: What number would be added in that instance? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Fyrfytr" wrote in message ... I would like to add a column of numbers, but some of the cells contain a range ($800 - $1000) in them. Is there a formula / function, or do I need to split up the ranges. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
adding hexadecimal numbers | New Users to Excel | |||
Adding a prefix to all numbers in a column. | Excel Discussion (Misc queries) | |||
Adding numbers in one cell and showing total in seperate cell | Excel Discussion (Misc queries) | |||
adding cells with text and numbers | Excel Discussion (Misc queries) | |||
Adding more than 30 numbers in a column | Excel Worksheet Functions |