Results 1 to 10 of 10

Thread: Advice: Dynamic named range Discontinuous, Non-VBA

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #9
    VBAX Regular
    Joined
    May 2004
    Location
    Springfield, MO
    Posts
    39
    Here is a dynamic named range that returns every third point:
    =INDEX(OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),1),3*ROW(INDIRECT("1:" & INT(COUNTA(Sheet1!$A:$A)/3))),1)
    While I could paste this formula to a worksheet using an array formula, I couldn't get it to work with a chart series.
    Last edited by byundt; 06-14-2004 at 06:17 PM. Reason: grammar

Posting Permissions

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