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

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

قام بنشر

و اذا اردت نقل الاسماء الى الجدول دون اخفاء

هذا الكود لنقل الاسماء التي تحتوي على ارقام

Sub Macro2()

r = 5
For Each cl In Sheets("Feuil1").Range("D5:D20")
If IsNumeric(Right(cl, 1)) Then
cl.Resize(, 1).Copy Range("F" & r)
r = r + 1
End If
Next

End Sub

و هذا الكود لنقل الاسماء التي لا تحتوي على ارقام

Sub Macro3()

r = 5
For Each cl In Sheets("Feuil1").Range("D5:D20")
If Not IsNumeric(Right(cl, 1)) Then
cl.Resize(, 1).Copy Range("F" & r)
r = r + 1
End If
Next

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