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

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

قام بنشر

السلام عليكم

المرجو من ذوي الخبرة تفسير هذا الكود بالتفصيل

Option Explicit

Dim tablo, tabloR()
Dim i&, iR&, j&

Sub SupprimerLesVides()
    
    tablo = Range("X10:AP48")
    ReDim tabloR(1 To UBound(tablo, 1), 1 To UBound(tablo, 2))
    
    For j = 1 To UBound(tablo, 2)
        If j <> 5 And j <> 10 And j <> 15 Then
            iR = 1
            For i = 1 To UBound(tablo, 1)
                If tablo(i, j) <> "" Then
                    tabloR(iR, j) = tablo(i, j)
                    iR = iR + 1
                End If
            Next i
        End If
    Next j
    Range("X10:AP48").ClearContents
    Range("X10").Resize(UBound(tabloR, 1), UBound(tabloR, 2)) = tabloR
    
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