Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF((G5+J19)=G5,0,+G5+J19)
G5 needs to stay the same and cell J needs to keep adding . |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your formula does not make a lot of sense. For G5+J19 to be equal to G5, if
G5 is not 0, then J19 must be 0; if G5 is 0, then J19 must also be 0 so either way, J19 must be 0 for the condition to be true. Just what are you trying to accomplish? Remember that a formula returns a value to the cell containing the formula - it does not change other cells. Tyro "T.R." wrote in message ... =IF((G5+J19)=G5,0,+G5+J19) G5 needs to stay the same and cell J needs to keep adding . |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
the formula works with what i have on my page, i was just wondering how to
copy the formula and paste it in the next cell below . here is an example =IF((G5+J19)=G5,0,+G5+J19) is in one cell. when i copy and paste it formulates to this =IF((G6+J20)=G6,0,+G6+J20) It needs to read in the next cell =IF((G5+J20)=G5,0,+G5+J20) how would you get the cell to copy and paste keeping the G5 and continuing on with J20, J21, J22, and so on. I have been just re-entering the same formula but keeping "G5" the same in the formula "Tyro" wrote: Your formula does not make a lot of sense. For G5+J19 to be equal to G5, if G5 is not 0, then J19 must be 0; if G5 is 0, then J19 must also be 0 so either way, J19 must be 0 for the condition to be true. Just what are you trying to accomplish? Remember that a formula returns a value to the cell containing the formula - it does not change other cells. Tyro "T.R." wrote in message ... =IF((G5+J19)=G5,0,+G5+J19) G5 needs to stay the same and cell J needs to keep adding . |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF($G$5+J19=$G$5,0,$G$5+J19) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "T.R." wrote in message ... =IF((G5+J19)=G5,0,+G5+J19) G5 needs to stay the same and cell J needs to keep adding . |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are Awesome man ! thanks alot for helping me ! that is what i needed it
to do ! "RagDyer" wrote: Try this: =IF($G$5+J19=$G$5,0,$G$5+J19) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "T.R." wrote in message ... =IF((G5+J19)=G5,0,+G5+J19) G5 needs to stay the same and cell J needs to keep adding . |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or even:
=IF(J19=0,0,$G$5+J19) or: =($G$5+J19)*(J19<0) RagDyer wrote: Try this: =IF($G$5+J19=$G$5,0,$G$5+J19) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "T.R." wrote in message ... =IF((G5+J19)=G5,0,+G5+J19) G5 needs to stay the same and cell J needs to keep adding . -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I refer to a 'formula' instead of the result of that formu | Excel Discussion (Misc queries) | |||
manually entering data in a cell with formula w/o losing the formu | Excel Discussion (Misc queries) | |||
copying formula to another cell | Excel Discussion (Misc queries) | |||
linking a cell with a specific letter value to a cell with a formu | Excel Worksheet Functions | |||
WHEN I COPY A CELL WITH A FORMU THE RESULT IS COPIED NOT THE FORM | Excel Discussion (Misc queries) |