+ Reply to Thread
Results 1 to 8 of 8

Excel Absolute/Indirect Problem

  1. #1
    Registered User
    Join Date
    06-26-2007
    Posts
    19

    Excel Absolute/Indirect Problem

    I have a simple formula in E6 (B6*C6). My problem is when I insert a new row into B6:C6, my formula in E6 changes from (B6*C6) to (B7*C7). I want the formula in E6 to ALWAYS be (B6*C6) no matter how many times I insert a new row into B6:C6. I've tried to use $B6*$C6 but it seems to change when I insert a new row. Your help is greatly appreciated.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Maybe

    =B$6*C$6
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    06-26-2007
    Posts
    19
    that is not working....when I insert a row into B6 and C6; the formula in E6 changes to B7*B7

  4. #4
    Registered User
    Join Date
    06-26-2007
    Posts
    19
    or if I delete the row; I get #REF!

  5. #5
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try

    =$B$6*$C$6
    VBA Noob

  6. #6
    Registered User
    Join Date
    06-26-2007
    Posts
    19
    Your answer is not working. It continues to change the formula if a new row is entered into B6 and C6

  7. #7
    Forum Contributor
    Join Date
    10-11-2007
    Location
    Sweden
    MS-Off Ver
    365
    Posts
    251
    Try formula =OFFSET(A1,5,1)*OFFSET(A1,5,2)

  8. #8
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885
    You can also try:

    =INDIRECT("B6")*INDIRECT("C6")

    Since the B6 and C6 aren't cell references, but text, they will not change when moved in any direction.

+ 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