+ Reply to Thread
Results 1 to 15 of 15

A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

Hybrid View

  1. #1
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    I am struggling with a formula to get allowable stress for thickness calculation. Please look at the attached sheet and advise or write for me.

    Require Allowable stress at "Column C" ( Tab Cal) from "Stress B31.3" Tab $C$5:$AE$8
    Allowable stress depends on Material "Column B" and Temperature "Row 4".
    Not all temperature for allowable stresses are available and has to interpolate for require temperature.
    Attached Files Attached Files

  2. #2
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Cool Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    Try this..
    Formula: copy to clipboard
    =INDEX(StressTableB313,MATCH($A7,'Stress B31.3'!MaterialB313,0),LOOKUP($B7,'Stress B31.3'!$C$4:$AE$4,COLUMN('Stress B31.3'!$C$4:$AE$4)-3))

    Check the attached file...
    Attached Files Attached Files
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

  3. #3
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    Vikas_Gautam

    Thanks for the formula. But this formula can't get correct value.
    Last edited by AyeNu; 09-25-2014 at 03:59 PM.

  4. #4
    Forum Expert ben_hensel's Avatar
    Join Date
    01-26-2012
    Location
    Northeast USA
    MS-Off Ver
    Office 365
    Posts
    2,043

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    Double-lookup using INDEX(MATCH,MATCH) for the stress values; approximate MATCH for the temperature; and linear interpolation.

    I threw #N/A values in the blanks to force it to return errors outside the limit while I was building this; it also throws errors on the margins, that is, when you're right on the last data value. I dunno how you want to handle error catches, so you might want to just delete those #N/A and leave 'em blank.
    Attached Files Attached Files
    Last edited by ben_hensel; 09-25-2014 at 11:45 AM.

  5. #5
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    To ben_hensel

    Thanks for the formula. This formula can get correct value. But I do not know how you consider for material "column A" in "Cal" tab.
    Could you please explain a bit?
    Last edited by AyeNu; 09-25-2014 at 04:00 PM.

  6. #6
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    To ben_hensel

    I just found hidden column C and D for Material and Temperature. Is there a way to write a formula without changing to index?
    Last edited by AyeNu; 09-25-2014 at 04:01 PM.

  7. #7
    Forum Expert ben_hensel's Avatar
    Join Date
    01-26-2012
    Location
    Northeast USA
    MS-Off Ver
    Office 365
    Posts
    2,043

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    @AyeNu

    who are you responding to?

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    After replacing the blanks in the stress table with a big negative constant (-9E307),

    A
    B
    C
    D
    7
    A106 B
    620
    17180
    C7: =PERCENTILE(INDEX(StressTableB313, MATCH(Cal!A7, 'Stress B31.3'!MaterialB313, 0), 0), 1 - PERCENTRANK('Stress B31.3'!$C$4:$AE$4, B7, 6))
    8
    A106 A
    600
    14800
    9
    A106 B
    550
    18100
    10
    A106 C
    670
    19320
    11
    A106 C
    720
    17440
    Entia non sunt multiplicanda sine necessitate

  9. #9
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    To shg
    Could you please upload the excel file? Thanks

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    Attached .
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    To shg,

    Great. This formula works well too. Do I have to replace all blanks with (-9E307)? My actual Stress B31.3 sheet has many blank cells.

    Thanks

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    Quote Originally Posted by AyeNu View Post
    Do I have to replace all blanks with (-9E307)?
    What happens when you don't?

  13. #13
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    I should point out that this takes about two seconds to do. Select the table, and do Ctrl+G (that's Go to), press Special, tick Blanks, press OK. Then paste -9e307 in the formula bar, press and hold the Ctrl key, then press Enter.

  14. #14
    Registered User
    Join Date
    09-24-2014
    Location
    Texas, USA
    MS-Off Ver
    Excel 2013
    Posts
    7

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    To shg,

    Thanks again.

    And any advice for using new functions of PERCENTILE and PERCENTRANK? because these functions may not be available in future versions of Excel.

  15. #15
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: A formula to get allowable stress FORECAST, OFFSET, INDEX, MATCH

    ... because these functions may not be available in future versions of Excel.
    Neither may SUM. But they are available now, and that's what we have to work with.

+ 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. Need help with index, match, offset formula
    By soonernut96 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-18-2013, 09:16 PM
  2. using forecast offset and match function for data that has blank values
    By larchonka in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-11-2013, 08:08 AM
  3. [SOLVED] Offset, Index, Match formula with dates inconsistently working
    By David Brown in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-31-2013, 04:12 PM
  4. Excel array formula, offset, index, match...
    By flippertie in forum Excel General
    Replies: 6
    Last Post: 03-17-2011, 09:42 AM
  5. Index, Match, Offset Formula
    By rhudgins in forum Excel General
    Replies: 2
    Last Post: 06-30-2010, 08:10 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