+ Reply to Thread
Results 1 to 5 of 5

Modifying Cell Addresses and operating on them

  1. #1
    Registered User
    Join Date
    10-19-2005
    Posts
    3

    Modifying Cell Addresses and operating on them

    F15 H15 I15 L8
    =H14+I13 =IF(F15<G15,0,F15-G15) =IF(H15<=RL,RQ,0) 2(Cell name LT)


    The Formula works perfectly but if L8 is changed it is not taken into account. The Formula for F15 SHOULD be something like =H14+(I15-LT) but any attempt at trying that has failed (=ADDRESS(15-LT,9,4,1)+H14)
    Last edited by RPG_Gamer; 10-19-2005 at 08:11 PM. Reason: Typo in formula

  2. #2
    Registered User
    Join Date
    10-19-2005
    Posts
    3

    Thumbs up

    As noone is answering I probably didnt make myself understood properly.

    F15 is the number of stock left from the day before (H14) plus the delivery which takes 2 days (hence I13 instead of I15) so the formula would be =H14+I13.

    Howether, this formula manually takes into account of the time it takes to deliver (2 days) and if the delivery time was improved to 1 then the changes would not show unless the Formula for Column F is manually changed to take that into consideration.

    What I am trying to do is create a Formula for Column F that takes into account any changes to the delivery time (in cell named LT) but have failed on each try (=ADDRESS(15-LT,9,4,1)+H14).

    How do I change the Formula so that the cell LT is taken into consideration???

  3. #3
    Roger Govier
    Guest

    Re: Modifying Cell Addresses and operating on them

    Hi

    Try
    =H14+INDIRECT("I"&15-LT)

    Regards

    Roger Govier


    RPG_Gamer wrote:
    > As noone is answering I probably didnt make myself understood properly.
    >
    > F15 is the number of stock left from the day before (H14) plus the
    > delivery which takes 2 days (hence I13 instead of I15) so the formula
    > would be =H14+I13.
    >
    > Howether, this formula manually takes into account of the time it takes
    > to deliver (2 days) and if the delivery time was improved to 1 then the
    > changes would not show unless the Formula for Column F is manually
    > changed to take that into consideration.
    >
    > What I am trying to do is create a Formula for Column F that takes into
    > account any changes to the delivery time (in cell named LT) but have
    > failed on each try *(*=ADDRESS(15-LT,9,4,1)+H14*)*.
    >
    > How do I change the Formula so that the cell LT is taken into
    > consideration???
    >
    >


  4. #4
    Registered User
    Join Date
    10-19-2005
    Posts
    3
    The Formula you gave did the trick BUT, the ("I"&15-LT) part stays the same and does not change for the new cell when the formula is copied. How do I get round this new problem?

    Edit: Never Mind, figured out the solution with the =ROW() function
    Last edited by RPG_Gamer; 10-20-2005 at 09:06 AM.

  5. #5
    Roger Govier
    Guest

    Re: Modifying Cell Addresses and operating on them

    Hi

    Then maybe
    =H14+INDIRECT("I"&ROW(H15)-LT)

    Regards

    Roger Govier


    RPG_Gamer wrote:
    > The Formula you gave did the trick BUT, the ("I"&15-LT) part stays the
    > same and does not change for the new cell when the formula is copied.
    > How do I get round this new problem?
    >
    >


+ 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