اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

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

قام بنشر

برجاء توزيع الرقم الإجمالي على عدد من الخلايا

بحيث يكون الإجمالي موزع على الحضور والتكليفات وmt 

بشرط الرقم في الحضور لا يزيد عن 5 والتكليفات لا يزيد عن 10 وmt لا يزيد عن 10 

كما بالملف المرفق 

وشكرا مقدماً

Book1.xlsx

قام بنشر

جرب هذا الماكرو

Option Explicit
Sub distribute_num()
Application.ScreenUpdating = False
With Sheets("sheet1")
     Dim cel As Range
     Dim my_rg As Range
     Set my_rg = .Range("e2:e" & .Cells(Rows.Count, "e").End(3).Row)

    For Each cel In my_rg
       If cel <> vbNullString Then
1:
           With cel
             .Offset(, -3) = Int(5 * (Rnd() + 1)) - 4
             .Offset(, -2) = Int(10 * (Rnd() + 1)) - 9
             .Offset(, -1) = cel - (cel.Offset(, -3) + cel.Offset(, -2))
               If .Offset(, -1) > 10 Then
                 GoTo 1
               End If
           End With
       End If
    Next
 End With
 Application.ScreenUpdating = True
End Sub

الملف مرفق

 

Rand_Number.xlsm

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