Share via

excel for circular systematic sampling method

Anonymous
2017-07-08T14:38:44+00:00

for example.. I have a data of 21 numbers. I want 10 samples. interval 3..then I want to number the 17th row as 1,then 20th row 2,then it comes 23 but we have the data only 21 so 23-21=2,the 2nd row becomes 3..then on...again 5th row becomes 4..etc... how can I number a data like this.. please tell a formula.. a general formula also.

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2017-07-08T14:58:41+00:00

    Let us keep things simple and assume you have your numbers in column A from A1 to A? wherever.

    Now we need 3 control variables:

    B1:  First

    C1:  17

    B2:  Interval

    C2:  3

    B3:  Count

    C3:  =COUNTA(A:A)

    As next we use column E as helper column to calculate the row numbers in column A. The first row is as in C1

    E1:  =$C$1

    The second is the interval below, but if we are over the end we have to subtract the amount of numbers:

    E2:  =E1+$C$2-IF(E1+$C$2>$C$3,$C$3,0)

    Drag the formula down till the end of your data in column A

    Finally get the numbers from column A into column F

    F1:  =INDEX(A:A,E1)

    Drag the formula down till the end of your data in column A

    Andreas.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2017-07-10T05:19:53+00:00

    Hi Jamalmuhammed,

    Have you checked Andreas's suggestions?

    Regards,

    Yoga

    Was this answer helpful?

    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more