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

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

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

 

جرب استعمال هذه المعادلة في الخلية F1

=CONCATENATE(A1,B1,C1,D1,TEXT(E1,"yyyy/mm/dd"))

بالتوفيق 

  • Thanks 1
  • Haha 1
قام بنشر

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

Sub CONCATENATE_CELLS()

    Dim CONCELL, myvariant As String
    Dim LR As Long
    Dim i As Integer

    LR = Cells(Rows.Count, 1).End(xlUp).Row
    CONCELL = Range("A2").Value
    
    Range("f:f").Value = ""
    Range("f" & 1).Value = "RESULT"

    For x = 2 To LR

        If Range("A" & x).Value <> "" Then
            CONCELL = Range("A" & x)
        End If

        Range("F" & x).Value = CONCELL & Range("B" & x).Value & Range("C" & x).Value & Range("D" & x).Value & Format(Range("E" & x).Value, "YYYY/MM/DD")
    Next

End Sub

 

MERGE CELLS.xlsm

  • 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