+ Reply to Thread
Results 1 to 9 of 9

How to find a target value from a list of calculated and ordered values

  1. #1
    Registered User
    Join Date
    05-22-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2010
    Posts
    16

    How to find a target value from a list of calculated and ordered values

    Please see attachment. I have a list of values, D2:02 that are calculated by adding a monthly contribution found in B2 to the previous month's balance.
    Is there a formula/calculation that I can place in B4 that will return the first month that the goal can be obtained? For example, if the goal was $70,000,
    then Jun-15 should be returned.

    Thank you.
    Attached Images Attached Images

  2. #2
    Forum Expert Crooza's Avatar
    Join Date
    10-19-2013
    Location
    Hunter Valley, Australia
    MS-Off Ver
    Excel 2003 /7/10
    Posts
    2,082

    Re: How to find a target value from a list of calculated and ordered values

    Roundup((b3-b1)/B2,0)will give you the number of months until you reach your goal. If you want this to be added to today's date or the date in D1 then just add the months *30 to convert to days then add to today's date (or D1)

    Ie

    = roundup((b3-b1)/B2), 0)*30 + today() or
    = roundup((b3-b1)/B2),0)*30 + D1
    Happy with my advice? Click on the * reputation button below

  3. #3
    Registered User
    Join Date
    02-14-2013
    Location
    South Carolina
    MS-Off Ver
    Excel 2007
    Posts
    44

    Re: How to find a target value from a list of calculated and ordered values

    It's a little awkward, but this would do what you want:

    Please Login or Register  to view this content.
    Breakdown:

    You INDEX the entire range. Then you choose row 1 (where the dates are that you want to return).

    The MATCH formula chooses the column. Match the value you want (B3) against the numeric range (D2:O2). The third variable determines whether you want 0 | Exact, -1 | Greater than or Equal To, or 1 | Less than or Equal To.

    At first, you would think that you want -1. You can do this only if your data is sorted Z-A (December - January with your sample data). You also have to invert the row reference, so that 1 = bottom row, 2 = next row up, and so on.

    Assuming that your data has to be in the order presented, we use EDATE to adjust for the difference. The INDEX(MATCH) finds the first value less than what you are looking for. EDATE adds one month to that, based on the logical progression of the data. Feel free to test with different values.

    If you do invert your data, running December to January, the formula would look like this:

    Please Login or Register  to view this content.

  4. #4
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: How to find a target value from a list of calculated and ordered values

    Here's another one...

    Array entered**:

    =MIN(IF(D2:O2>=B3,D1:O1))

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

    Format as Date
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  5. #5
    Registered User
    Join Date
    05-22-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How to find a target value from a list of calculated and ordered values

    Crooza - Thanks for the advice. I noticed however that the result was always 1 month beyond the actual month that should have been returned. So for example, if I entered 70000, the roundup() solution returns Jul-15, where it should return Jun-15. So I just changed the roundup() to a rounddown(), and the correct date is generated.

    Thanks again for your help.

    Greg

  6. #6
    Forum Expert Crooza's Avatar
    Join Date
    10-19-2013
    Location
    Hunter Valley, Australia
    MS-Off Ver
    Excel 2003 /7/10
    Posts
    2,082

    Re: How to find a target value from a list of calculated and ordered values

    Sorry that solution was untested as I was on iPad at the time. Glad you worked it out

  7. #7
    Registered User
    Join Date
    05-22-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How to find a target value from a list of calculated and ordered values

    Tony - Clearly the most elegant solution proposed, although it took some study to clear up the cobwebs regarding arrays. Once that cleared, it looked great!

    Thanks for the assistance,
    Greg

  8. #8
    Registered User
    Join Date
    05-22-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: How to find a target value from a list of calculated and ordered values

    Kbryant - Thanks for assistance. There was an issue however when the target goal exactly matches the value in row 2. In that case, the next month is returned. For example, if the goal entered is $80,000, then Nov-15 is returned, whereas Oct-15 should be returned. I played around with it for a while by adding an error check for an exact match, and got it to work. Here's the result:
    =EDATE(INDEX($D$1:$O$2,1,IFERROR(MATCH($B$3,$D$2:$O$2,0)-1,MATCH($B$3,$D$2:$O$2,1))),1).

    Thanks again,
    Greg

  9. #9
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: How to find a target value from a list of calculated and ordered values

    You're welcome. Thanks for the feedback!

    Here's some more info on array formulas:

    http://www.cpearson.com/Excel/ArrayFormulas.aspx

+ 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. Formula for number of perfect ordered needed to achieve certain target.
    By kokoli84 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-11-2014, 08:06 PM
  2. Replies: 2
    Last Post: 09-27-2013, 02:31 AM
  3. Counting Unique Values and Generating an Ordered List
    By amerain in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 05-13-2013, 08:08 PM
  4. Replies: 2
    Last Post: 12-14-2012, 01:17 PM
  5. Replies: 5
    Last Post: 10-26-2008, 06:56 PM

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