Consulting

Results 1 to 3 of 3

Thread: Standard Deviation of an array

  1. #1

    Standard Deviation of an array

    I have an array arrData(800,15). I want to find the standard deviation of the data in arrData(800,10). Is there a way to do this without entering 800 rows in an excel spreadsheet and using STDEV.S there? Thanks.

  2. #2

  3. #3
    Knowledge Base Approver VBAX Wizard p45cal's Avatar
    Joined
    Oct 2005
    Location
    Surrey UK
    Posts
    5,877
    sd = Application.StDev_S(Application.Index(arrData, ,10))
    p45cal
    Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •