اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

وعليكم السلام

هل سيتم إدخال ثلاثة أرقام بشكل يدوي؟ ما الغرض في هذه الحالة ؟ ولما لا يكون التوزيع للأرقام بشكل عشوائي لكل الأرقام

جرب الكود التالي لعله يفي بالغرض

Sub GenerateUniqueRandom()
    Dim b() As Boolean, e As Range, k&, x&
    
    Const r As Long = 14
    ReDim b(1 To r)
    
    For Each e In Range("A2:C5")
        Do
            x = Int(Rnd() * r) + 1
            If b(x) = False Then
                e.Value = x
                b(x) = True
                Exit Do
            End If
            
            k = k + 1: If k > 1000 Then Exit Sub
        Loop
    Next e
End Sub

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information