+ Reply to Thread
Results 1 to 12 of 12

Help. Column showing same result no matter what the referenced cell's value.

  1. #1
    Registered User
    Join Date
    10-12-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    62

    Help. Column showing same result no matter what the referenced cell's value.

    I have a spreadsheet that the formula in Column V will return the same number no matter what I multiple it by.

    Column V has : K2*U2
    Column K has formula:=AVERAGE((OFFSET(INDEX(_HST_WK,MATCH($A2,HST_WK!$A:$A,0),1),0,Yr_Begin,1,Yr_End))) and is formatted as a "Number"
    Column U has formula: =IFERROR((T2*S2)/K2,0) and is formatted as a number. Also T2 and S2 are numbers.

    No matter what Column V is multiplying by it results as the same number 130,000. It could be 12 X 1 and the result is 130,000.

  2. #2
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,447

    Re: Help. Column showing same result no matter what the referenced cell's value.

    It would help if you could post a sample sheet - Thx

  3. #3
    Forum Guru romperstomper's Avatar
    Join Date
    11-04-2008
    Location
    A1
    MS-Off Ver
    Most
    Posts
    12,302

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Do you see 'Calculate' in the status bar at the bottom left of the screen?
    Remember what the dormouse said
    Feed your head

  4. #4
    Registered User
    Join Date
    10-12-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: Help. Column showing same result no matter what the referenced cell's value.

    No I do not see "calculate", just "ready"

  5. #5
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Help. Column showing same result no matter what the referenced cell's value.

    You have a * and / cancelling each other out.

    V has U2 multiplied by K2
    But then the formuila in U2 is Devided by K2
    Those cancel each other out

    example

    X*10/X = 10, regardless of the value of X

    So your formula in column V essentially boils down to =T2*S2
    Last edited by Jonmo1; 10-01-2014 at 08:37 AM.

  6. #6
    Registered User
    Join Date
    10-12-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Sample.xlsx

    Here is a sample Worksheet

  7. #7
    Valued Forum Contributor
    Join Date
    01-19-2012
    Location
    Barrington, IL
    MS-Off Ver
    Excel 2007/2010
    Posts
    1,211

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Quote Originally Posted by Jonmo1 View Post
    You have a * and / cancelling each other out.

    V has U2 multiplied by K2
    But then the formuila in U2 is Devided by K2
    Those cancel each other out

    example

    X*10/X = 10, regardless of the value of X

    So your formula in column V essentially boils down to =T2*S2
    That is true, but it looks like they are different numbers in which case they would not be canceling each other out

    =IFERROR((T2*S2)/K2,0)

    T * S / K

    or

    5*10/25 = 2


    Unless I missed something?
    Last edited by Speshul; 10-01-2014 at 08:42 AM.
    You should hit F5, because chances are I've edited this post at least 5 times.
    Example of Array Formulas
    Quote Originally Posted by Jacc View Post
    Sorry, your description makes no sense. I just made some formula that looks interesting cause I had nothing else to do.
    Click the * below on any post that helped you.

  8. #8
    Registered User
    Join Date
    10-12-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Jommo1. I see your point. Now I just need to fix it Thank you.

  9. #9
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Here's what's happening..

    V2 has
    =K2*U2

    U2 has
    =IFERROR((T2*S2)/K2,0)

    It's irrelevant what the result of T2*S2 is, so long as it's a numeric result...
    So let's just say T2 = 5 and S2 = 4, so T2*S2=20
    U2 becomes
    =IFERROR(20/K2,0)

    It's also irreleveant what the result of K2 is, as long is it's a numeric result, say it's 4
    So U2 becomes
    =IFERROR((20/4,0)
    That is Not an error so it's
    =20/4

    And V2 (=K2*U2) becomes
    =4*U2

    Then it becomes
    =4*20/4

    The 4's cancel each other out

  10. #10
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Help. Column showing same result no matter what the referenced cell's value.

    Quote Originally Posted by swiftrain View Post
    Jommo1. I see your point. Now I just need to fix it
    Glad to help.

    Instead of trying to 'fix' it..
    It might be better to just start over and describe what you want the formula(s) to do

  11. #11
    Registered User
    Join Date
    10-12-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: Help. Column showing same result no matter what the referenced cell's value.

    I found what happened. I agree with you. I am dividing by the same number then multiplying it back. Which creates a sort of redundancy. Column V is basically looking for the same value in Column S. Thanks for the help. I think I just needed new eyes on it.

  12. #12
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Help. Column showing same result no matter what the referenced cell's value.

    You're welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Messagebox showing the result of a paricular cell.
    By omega0010 in forum Excel Programming / VBA / Macros
    Replies: 17
    Last Post: 12-27-2012, 09:20 AM
  2. Replies: 15
    Last Post: 03-08-2007, 04:59 PM
  3. Replies: 1
    Last Post: 08-07-2006, 04:55 PM
  4. formula in cell not showing result
    By Leolin in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 03-18-2005, 02:06 PM
  5. Formula result not showing in cell
    By Leolin in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-17-2005, 02:06 AM

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