veyselemre
Özel Üye
- Katılım
- 9 Mart 2005
- Mesajlar
- 3,646
- Excel Vers. ve Dili
- Pro Plus 2021
Kod:
Sub BirlestirilmisHucreleriCozIlkDegerleDoldur()
Set dic = CreateObject("scripting.dictionary")
sonsat = Cells(Rows.Count, 1).End(3).Row
For x = 1 To sonsat
ekle = Cells(x, 1).MergeArea.Address
If Not dic.exists(ekle) Then
dic.Add ekle, Nothing
End If
Next x
Range("a1:a" & sonsat).UnMerge
For Each aralik In dic.keys
Range(aralik).FillDown
Next
Set dic = Nothing
End Sub