Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I want to insert a formula into my worksheet and copy it down the column
without displaying anything in each cell until a value is established. Example would be A3-A2+A1 would be the formula I want the answer to show up in cell A4. I want to copy the formula from A5 down to A25, but I don't want the result of cell A4 to show up in each cell. |
#2
![]() |
|||
|
|||
![]()
Do you mean? :
=IF(OR(ISNUMBER(A3),ISNUMBER(A2),ISNUMBER(A1)),A3-A2+A1,"") 'AND' instead of 'OR' if all cells must be numbers. Ola Sandstrom |
#3
![]() |
|||
|
|||
![]()
"Ola" wrote...
Do you mean? : =IF(OR(ISNUMBER(A3),ISNUMBER(A2),ISNUMBER(A1)), A3-A2+A1,"") 'AND' instead of 'OR' if all cells must be numbers. Alternatively, 'OR' semantics: =IF(COUNT(A1:A3)=1,A3-A2+A1,"") 'AND' semantice: =IF(COUNT(A1:A3)=3,A3-A2+A1,"") |
#4
![]() |
|||
|
|||
![]()
Yes! It was exactly what I needed. Thank you for your time and assistance.
Coddie "Harlan Grove" wrote: "Ola" wrote... Do you mean? : =IF(OR(ISNUMBER(A3),ISNUMBER(A2),ISNUMBER(A1)), A3-A2+A1,"") 'AND' instead of 'OR' if all cells must be numbers. Alternatively, 'OR' semantics: =IF(COUNT(A1:A3)=1,A3-A2+A1,"") 'AND' semantice: =IF(COUNT(A1:A3)=3,A3-A2+A1,"") |
#5
![]() |
|||
|
|||
![]()
Thank you so much! It worked! I really appreciate your assistance!
coddie "Ola" wrote: Do you mean? : =IF(OR(ISNUMBER(A3),ISNUMBER(A2),ISNUMBER(A1)),A3-A2+A1,"") 'AND' instead of 'OR' if all cells must be numbers. Ola Sandstrom |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
When I copy down into the next cell the formula changes correctly. | Excel Discussion (Misc queries) | |||
to copy a formula in cell c1 (+b1/b11) to cells c2-10, how can i . | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions | |||
Copy formula to every 12th cell | Excel Worksheet Functions | |||
How to populate column with formula based on value in cell | Excel Worksheet Functions |