Results 1 to 4 of 4

Answer's a little more complicated than regular formulas, but what do I need to do?

Threaded View

  1. #2
    Forum Contributor
    Join Date
    03-21-2006
    Posts
    205
    If you can live with circular references until the values are entered:

    Cell A2:
    =B2+C2

    Cell B2:
    =A2+C2

    Cell C2:
    =A2-B2

    Copy formulae down


    Otherwise separate the input area (A2:C100) and the output area (D2:D100)

    Cell D2:
    =IF(COUNTA(A2:C2)<2,"",IF(A2="",B2+C2,A2))

    Cell E2:
    =IF(COUNTA(A2:C2)<2,"",IF(B2="",A2+C2,B2))

    Cell F2:
    =IF(COUNTA(A2:C2)<2,"",IF(C2="",A2-B2,C2))

    Copy formulae down

    Alternative: A macro
    Last edited by John James; 04-19-2006 at 01:32 AM.

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