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

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

قام بنشر (معدل)

بسم الله الرحمن الرحيم

يا اخوان ممكن مساعدتي لتسمية ملفات اكسل حسب اسم خلية من ملف رئيسي

 

officena.net.rar

تم تعديل بواسطه دغيدى
قام بنشر

جرب الكود التالي (ضع أسماء الملفات الجديدة في العمود المجاور في العمود الثاني قبل تنفيذ الكود)

Sub RenameWBs()
    Dim strFolder       As String
    Dim strFile         As String
    Dim cel             As Range
    
    Application.ScreenUpdating = False
        strFolder = ThisWorkbook.Path & "\"
        strFile = Dir(ThisWorkbook.Path & "\" & "*.xlsx")
    
        Do While strFile <> ""
            On Error Resume Next
                For Each cel In Worksheets(1).Range("A1:A" & Worksheets(1).Cells(Rows.Count, 1).End(xlUp).Row)
                    If cel.Value = Replace(strFile, ".xlsx", "") Then
                        Name strFolder & strFile As strFolder & cel.Offset(, 1).Value & ".xlsx"
                        Exit For
                    End If
                Next cel
            On Error GoTo 0
            
            strFile = Dir
        Loop
    Application.ScreenUpdating = True
End Sub

 

  • Like 2

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