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

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

قام بنشر

السلام عليكم الاخوة الكرام

عندى ملف فيه ماكرو يتم تنفيذه

مطلوب اذا كانت الخلية A10  فارغة لا يتم تنفيذ الماكرو و يعطى رسالة مطلوب كتابة رقم الخط

الف شكر للاساتذة الافاضل و جعل الله علمكم فى ميزان حسناتكم

مرفق ملف

استفسار خطوط.xlsm

  • أفضل إجابة
قام بنشر

Very bad approach to use macro recorder

Generally try the code that do the same steps

Sub Test()
    Dim rng As Range, lr As Long
    With ActiveSheet
        If .Range("A10").Value = Empty Then MsgBox "Enter Number", vbExclamation: Exit Sub
        Application.ScreenUpdating = False
            Set rng = .Range("A10").Resize(, 9)
            lr = .Cells(Rows.Count, "Z").End(xlUp).Row + 1
            .Range("Z" & lr).Resize(, 9).Value = rng.Value
            rng.SpecialCells(xlCellTypeConstants).ClearContents
        Application.ScreenUpdating = True
    End With
End Sub

 

  • Like 1
قام بنشر

الاستاذ الفاضل lionheart 

الف الف شكر لحضرتك الكود يعمل بكفاءة و هو المطلوب 

ربنا يحفظ و يبارك فيك و يمتعك بالصحة و العافية

اكرر شكر لحضرتك 

  • Like 1

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