자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vba [vba] Collection을 활용한 중복값 없이 랜덤 추출하기

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 8,476회 작성일 20-09-04 14:44

본문

Sub RndSeat()
    Dim i As Integer, n As Integer, max As Integer, count As Integer
    Dim V As Variant, x As New Collection
    max = Val([D2]) * Val([F2])
    i = Cells(Rows.count, "L").End(3).Row
    If (i - 3< max Then MsgBox "추출할 수 있는 수량을 초과했습니다."End
    Do While x.count < max
        Randomize: xAdd x, Int((i - 4 + 1* Rnd + 4)
    Loop
    [D4].Resize([D4].CurrentRegion.Rows.count, 3).ClearContents
    Application.ScreenUpdating = False
    For i = 4 To Cells(Rows.count, "C").End(3).Row Step 10
        For n = 1 To Val([D2])
            count = count + 1If x.count < count Then GoTo WorkEnd
            Cells(i + n - 14).Resize(, 3).value = Cells(x.Item(count), "L").Resize(, 3).value
        Next
    Next
WorkEnd:
Application.ScreenUpdating = True
    MsgBox "완료!!"
End Sub
 
Function xAdd(ByRef x As Collection, ByVal value As StringAs Boolean
    On Error GoTo ErrPass
    x.Add value, value
    xAdd = True
ErrPass:
End Function

댓글목록

등록된 댓글이 없습니다.