+ Reply to Thread
Results 1 to 14 of 14

Excel should let me use formulas that refer to other cells w/ form

  1. #1
    Chenopod
    Guest

    Excel should let me use formulas that refer to other cells w/ form

    Currently, formulas in MS Excel only let you call on cells that have constant
    values. This has made it extremely difficult for me to manipulate
    spreadsheets effectively in my company. I'm not sure if it is possible to
    perform these tasks in Visual Basic Editor, but I strongly suggest that a
    future version of Excel allow formulas to refer to other cells with formulas
    and funtions (whose values could change). It doesn't seem too hard to
    accomplish because whenever a formula refers to other cells with formulas,
    following the line of cell references always ends with constants. In other
    words, if you were to combine all formulas of this nature into one huge
    formula, it would in fact refer only to constants.

    ----------------
    This post is a suggestion for Microsoft, and Microsoft responds to the
    suggestions with the most votes. To vote for this suggestion, click the "I
    Agree" button in the message pane. If you do not see the button, follow this
    link to open the suggestion in the Microsoft Web-based Newsreader and then
    click "I Agree" in the message pane.

    http://www.microsoft.com/office/comm...heet.functions

  2. #2
    Duke Carey
    Guest

    RE: Excel should let me use formulas that refer to other cells w/ form

    Are you stating that you cannot use a formula or function to refer to cell A1
    if cell A1 has a formula? If so, your statement couldn't be any further off
    base.

    If I've misread your comment, please clarify what are you trying to express.

    "Chenopod" wrote:

    > Currently, formulas in MS Excel only let you call on cells that have constant
    > values. This has made it extremely difficult for me to manipulate
    > spreadsheets effectively in my company. I'm not sure if it is possible to
    > perform these tasks in Visual Basic Editor, but I strongly suggest that a
    > future version of Excel allow formulas to refer to other cells with formulas
    > and funtions (whose values could change). It doesn't seem too hard to
    > accomplish because whenever a formula refers to other cells with formulas,
    > following the line of cell references always ends with constants. In other
    > words, if you were to combine all formulas of this nature into one huge
    > formula, it would in fact refer only to constants.
    >
    > ----------------
    > This post is a suggestion for Microsoft, and Microsoft responds to the
    > suggestions with the most votes. To vote for this suggestion, click the "I
    > Agree" button in the message pane. If you do not see the button, follow this
    > link to open the suggestion in the Microsoft Web-based Newsreader and then
    > click "I Agree" in the message pane.
    >
    > http://www.microsoft.com/office/comm...heet.functions


  3. #3
    RagDyeR
    Guest

    Re: Excel should let me use formulas that refer to other cells w/ form

    You are sooooo wrong, that It must be that I'm not understanding what you're
    writing.

    Are you saying that a formula *cannot* use the return of a cell that
    contains another formula?

    You're not saying that ... are you?
    --

    Regards,

    RD
    --------------------------------------------------------------------
    Please keep all correspondence within the Group, so all may benefit !
    --------------------------------------------------------------------

    "Chenopod" <[email protected]> wrote in message
    news:[email protected]...
    Currently, formulas in MS Excel only let you call on cells that have
    constant
    values. This has made it extremely difficult for me to manipulate
    spreadsheets effectively in my company. I'm not sure if it is possible to
    perform these tasks in Visual Basic Editor, but I strongly suggest that a
    future version of Excel allow formulas to refer to other cells with formulas
    and funtions (whose values could change). It doesn't seem too hard to
    accomplish because whenever a formula refers to other cells with formulas,
    following the line of cell references always ends with constants. In other
    words, if you were to combine all formulas of this nature into one huge
    formula, it would in fact refer only to constants.

    ----------------
    This post is a suggestion for Microsoft, and Microsoft responds to the
    suggestions with the most votes. To vote for this suggestion, click the "I
    Agree" button in the message pane. If you do not see the button, follow this
    link to open the suggestion in the Microsoft Web-based Newsreader and then
    click "I Agree" in the message pane.

    http://www.microsoft.com/office/comm...heet.functions



  4. #4
    Registered User
    Join Date
    05-28-2005
    Posts
    1
    i absolutely agree with this. infact i found this site after trying to find a solution to the same issue. havent found any solution so far, and appriciate if some one could help on this.
    thanks

  5. #5
    JE McGimpsey
    Guest

    Re: Excel should let me use formulas that refer to other cells w/ form

    What issue are you having? This works fine for me:


    A1: 1
    A2: 2
    A3: =A1 + A2 ====> 3
    A4: =A3 * 4 ====> 12


    So the formula in A4 refers to another cell (A3) with a formula.

    What trouble are you having?

    In article <[email protected]>,
    azmi athas <[email protected]>
    wrote:

    > i absolutely agree with this. infact i found this site after trying to
    > find a solution to the same issue. havent found any solution so far,
    > and appriciate if some one could help on this.


  6. #6
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    BEFORE entering the data. i.e., the formula is entered first, and the
    relevent data is to be entered at a later stage.as far as i know this only
    happens when you devide a value by zero or when the formula has to devide
    zero by zero. this does not happen when you multiply or add. hence this cell
    which gives (#DIV/0!) will continue to be the same to all formulas which
    refers this particula cell(s). howerver i managed to find that "ISERROR"
    function eliminates this issue.

    A1=0
    B1=0
    C1=A1/B1=#DIV/0!

    SOLUTION
    C1=IF(ISERROR(A1/B1),'''',A1/B1)

    thanks.

    "JE McGimpsey" wrote:

    > What issue are you having? This works fine for me:
    >
    >
    > A1: 1
    > A2: 2
    > A3: =A1 + A2 ====> 3
    > A4: =A3 * 4 ====> 12
    >
    >
    > So the formula in A4 refers to another cell (A3) with a formula.
    >
    > What trouble are you having?
    >
    > In article <[email protected]>,
    > azmi athas <[email protected]>
    > wrote:
    >
    > > i absolutely agree with this. infact i found this site after trying to
    > > find a solution to the same issue. havent found any solution so far,
    > > and appriciate if some one could help on this.

    >


  7. #7
    JE McGimpsey
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    Multiplication and addition happen before the data is entered, just as
    division does. The difference is that multiplication by zero and
    addition of zero are defined, whereas division by zero is not, hence the
    error.

    Note that ISERROR() will mask any other errors you have. It's usually
    better to trap only "expected" errors:

    C1: =IF(B1=0,"",A1/B1)





    In article <[email protected]>,
    "azmi" <[email protected]> wrote:

    > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > BEFORE entering the data. i.e., the formula is entered first, and the
    > relevent data is to be entered at a later stage.as far as i know this only
    > happens when you devide a value by zero or when the formula has to devide
    > zero by zero. this does not happen when you multiply or add. hence this cell
    > which gives (#DIV/0!) will continue to be the same to all formulas which
    > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > function eliminates this issue.
    >
    > A1=0
    > B1=0
    > C1=A1/B1=#DIV/0!
    >
    > SOLUTION
    > C1=IF(ISERROR(A1/B1),'''',A1/B1)


  8. #8
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  9. #9
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  10. #10
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  11. #11
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  12. #12
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  13. #13
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


  14. #14
    azmi
    Guest

    Re: Excel should let me use formulas that refer to other cells w/

    your explanation worked out perfectly, and sorted my problem without further
    complications. thanks to you. but before i leave, just out of curiosity may i
    ask, is CHENOPOD (the one who bought the similar issue first) has the same
    problem as mine, or is he refering to something else?

    "JE McGimpsey" wrote:

    > Multiplication and addition happen before the data is entered, just as
    > division does. The difference is that multiplication by zero and
    > addition of zero are defined, whereas division by zero is not, hence the
    > error.
    >
    > Note that ISERROR() will mask any other errors you have. It's usually
    > better to trap only "expected" errors:
    >
    > C1: =IF(B1=0,"",A1/B1)
    >
    >
    >
    >
    >
    > In article <[email protected]>,
    > "azmi" <[email protected]> wrote:
    >
    > > appriciate your prompt reply. my issue was, the formula displays (#DIV/0!)
    > > BEFORE entering the data. i.e., the formula is entered first, and the
    > > relevent data is to be entered at a later stage.as far as i know this only
    > > happens when you devide a value by zero or when the formula has to devide
    > > zero by zero. this does not happen when you multiply or add. hence this cell
    > > which gives (#DIV/0!) will continue to be the same to all formulas which
    > > refers this particula cell(s). howerver i managed to find that "ISERROR"
    > > function eliminates this issue.
    > >
    > > A1=0
    > > B1=0
    > > C1=A1/B1=#DIV/0!
    > >
    > > SOLUTION
    > > C1=IF(ISERROR(A1/B1),'''',A1/B1)

    >


+ 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