+ Reply to Thread
Results 1 to 6 of 6

Combining formulas and results HELP!!

  1. #1
    JRH
    Guest

    Combining formulas and results HELP!!

    Thanks, but I'm still stuck?????

    =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))
    The above result of the above formula does not return the same value as
    splitting the operation into two.


    =E12-(POWER(D12,2)/C12) ---> returns 220
    Now, the above returns 220, I need that 220 to complete the second equation.
    =SQRT(J1/(C12-1)) ---> =sqrt(220/199)
    cell j1=220
    cell c12=200

    So, How do I combine the result that is being generated in j1 into the
    equation in the cell j1 to be all on the same line, rather then two lines.


    Thanks -

    JRH



  2. #2
    Forum Contributor
    Join Date
    09-05-2004
    Location
    Melbourne
    Posts
    193
    Needed some more brackets

    make this

    =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))

    become this

    =SQRT((E12-(POWER(D12,2)/C12))/(C12-1))

    Cheers!

  3. #3
    Ken Wright
    Guest

    Re: Combining formulas and results HELP!!

    Operator precedence means that the division in (POWER(D12,2)/C12)/(C12-1)
    will happen first instead of what you want which is E12-(POWER(D12,2)/C12)
    / (C12-1), so just wrap the first part in brackets

    (E12-(POWER(D12,2)/C12)) / (C12-1)

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ----------------------------------------------------------------------------
    It's easier to beg forgiveness than ask permission :-)
    ----------------------------------------------------------------------------

    "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    news:[email protected]...
    > Thanks, but I'm still stuck?????
    >
    > =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))
    > The above result of the above formula does not return the same value as
    > splitting the operation into two.
    >
    >
    > =E12-(POWER(D12,2)/C12) ---> returns 220
    > Now, the above returns 220, I need that 220 to complete the second

    equation.
    > =SQRT(J1/(C12-1)) ---> =sqrt(220/199)
    > cell j1=220
    > cell c12=200
    >
    > So, How do I combine the result that is being generated in j1 into the
    > equation in the cell j1 to be all on the same line, rather then two lines.
    >
    >
    > Thanks -
    >
    > JRH
    >
    >




  4. #4
    JRH
    Guest

    Re: Combining formulas and results HELP!!

    How can I take two formulas and combine them into one. However, the result
    of the one formula is needed in the second formula?
    Formula (1) =E12-(POWER(D12,2)/C12) --> this is being written is cell b16,
    thus the reason I call it in formula 2
    Formula (2)=SQRT(b16/(C12-1))

    Thanks greatly!

    JRH


    "Ken Wright" <[email protected]> wrote in message
    news:%23%[email protected]...
    > Operator precedence means that the division in (POWER(D12,2)/C12)/(C12-1)
    > will happen first instead of what you want which is E12-(POWER(D12,2)/C12)
    > / (C12-1), so just wrap the first part in brackets
    >
    > (E12-(POWER(D12,2)/C12)) / (C12-1)
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > --------------------------------------------------------------------------

    --
    > It's easier to beg forgiveness than ask permission :-)
    > --------------------------------------------------------------------------

    --
    >
    > "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    > news:[email protected]...
    > > Thanks, but I'm still stuck?????
    > >
    > > =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))
    > > The above result of the above formula does not return the same value as
    > > splitting the operation into two.
    > >
    > >
    > > =E12-(POWER(D12,2)/C12) ---> returns 220
    > > Now, the above returns 220, I need that 220 to complete the second

    > equation.
    > > =SQRT(J1/(C12-1)) ---> =sqrt(220/199)
    > > cell j1=220
    > > cell c12=200
    > >
    > > So, How do I combine the result that is being generated in j1 into the
    > > equation in the cell j1 to be all on the same line, rather then two

    lines.
    > >
    > >
    > > Thanks -
    > >
    > > JRH
    > >
    > >

    >
    >




  5. #5
    Ken Wright
    Guest

    Re: Combining formulas and results HELP!!

    Just do as I suggested and wrap your first formula in brackets, Then
    substitute it for the cell reference you have in the second formula

    =E12-(POWER(D12,2)/C12)

    becomes

    (E12-(POWER(D12,2)/C12))

    and replaces the B16 in

    =SQRT(b16/(C12-1))

    to give

    =SQRT((E12-(POWER(D12,2)/C12))/(C12-1))

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ----------------------------------------------------------------------------
    It's easier to beg forgiveness than ask permission :-)
    ----------------------------------------------------------------------------

    "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    news:[email protected]...
    > How can I take two formulas and combine them into one. However, the

    result
    > of the one formula is needed in the second formula?
    > Formula (1) =E12-(POWER(D12,2)/C12) --> this is being written is cell

    b16,
    > thus the reason I call it in formula 2
    > Formula (2)=SQRT(b16/(C12-1))
    >
    > Thanks greatly!
    >
    > JRH
    >
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:%23%[email protected]...
    > > Operator precedence means that the division in

    (POWER(D12,2)/C12)/(C12-1)
    > > will happen first instead of what you want which is

    E12-(POWER(D12,2)/C12)
    > > / (C12-1), so just wrap the first part in brackets
    > >
    > > (E12-(POWER(D12,2)/C12)) / (C12-1)
    > >
    > > --
    > > Regards
    > > Ken....................... Microsoft MVP - Excel
    > > Sys Spec - Win XP Pro / XL 97/00/02/03
    > >

    >
    > --------------------------------------------------------------------------
    > --
    > > It's easier to beg forgiveness than ask permission :-)

    >
    > --------------------------------------------------------------------------
    > --
    > >
    > > "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    > > news:[email protected]...
    > > > Thanks, but I'm still stuck?????
    > > >
    > > > =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))
    > > > The above result of the above formula does not return the same value

    as
    > > > splitting the operation into two.
    > > >
    > > >
    > > > =E12-(POWER(D12,2)/C12) ---> returns 220
    > > > Now, the above returns 220, I need that 220 to complete the second

    > > equation.
    > > > =SQRT(J1/(C12-1)) ---> =sqrt(220/199)
    > > > cell j1=220
    > > > cell c12=200
    > > >
    > > > So, How do I combine the result that is being generated in j1 into the
    > > > equation in the cell j1 to be all on the same line, rather then two

    > lines.
    > > >
    > > >
    > > > Thanks -
    > > >
    > > > JRH
    > > >
    > > >

    > >
    > >

    >
    >




  6. #6
    JRH
    Guest

    Re: Combining formulas and results HELP!!

    THANKS!!
    - Jeff
    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Just do as I suggested and wrap your first formula in brackets, Then
    > substitute it for the cell reference you have in the second formula
    >
    > =E12-(POWER(D12,2)/C12)
    >
    > becomes
    >
    > (E12-(POWER(D12,2)/C12))
    >
    > and replaces the B16 in
    >
    > =SQRT(b16/(C12-1))
    >
    > to give
    >
    > =SQRT((E12-(POWER(D12,2)/C12))/(C12-1))
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > --------------------------------------------------------------------------

    --
    > It's easier to beg forgiveness than ask permission :-)
    > --------------------------------------------------------------------------

    --
    >
    > "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    > news:[email protected]...
    > > How can I take two formulas and combine them into one. However, the

    > result
    > > of the one formula is needed in the second formula?
    > > Formula (1) =E12-(POWER(D12,2)/C12) --> this is being written is cell

    > b16,
    > > thus the reason I call it in formula 2
    > > Formula (2)=SQRT(b16/(C12-1))
    > >
    > > Thanks greatly!
    > >
    > > JRH
    > >
    > >
    > > "Ken Wright" <[email protected]> wrote in message
    > > news:%23%[email protected]...
    > > > Operator precedence means that the division in

    > (POWER(D12,2)/C12)/(C12-1)
    > > > will happen first instead of what you want which is

    > E12-(POWER(D12,2)/C12)
    > > > / (C12-1), so just wrap the first part in brackets
    > > >
    > > > (E12-(POWER(D12,2)/C12)) / (C12-1)
    > > >
    > > > --
    > > > Regards
    > > > Ken....................... Microsoft MVP - Excel
    > > > Sys Spec - Win XP Pro / XL 97/00/02/03
    > > >

    > >

    >
    > --------------------------------------------------------------------------
    > > --
    > > > It's easier to beg forgiveness than ask permission :-)

    > >

    >
    > --------------------------------------------------------------------------
    > > --
    > > >
    > > > "JRH" <!jeff!.huelse!@!hp.c!o!m!N!OT!> wrote in message
    > > > news:[email protected]...
    > > > > Thanks, but I'm still stuck?????
    > > > >
    > > > > =SQRT(E12-(POWER(D12,2)/C12)/(C12-1))
    > > > > The above result of the above formula does not return the same

    value
    > as
    > > > > splitting the operation into two.
    > > > >
    > > > >
    > > > > =E12-(POWER(D12,2)/C12) ---> returns 220
    > > > > Now, the above returns 220, I need that 220 to complete the second
    > > > equation.
    > > > > =SQRT(J1/(C12-1)) ---> =sqrt(220/199)
    > > > > cell j1=220
    > > > > cell c12=200
    > > > >
    > > > > So, How do I combine the result that is being generated in j1 into

    the
    > > > > equation in the cell j1 to be all on the same line, rather then two

    > > lines.
    > > > >
    > > > >
    > > > > Thanks -
    > > > >
    > > > > JRH
    > > > >
    > > > >
    > > >
    > > >

    > >
    > >

    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1