علي عبد المنعم قام بنشر يناير 1, 2020 قام بنشر يناير 1, 2020 برجاء المساعدة في تقسيم محتويات خلية الى عدة خلايا كما هو موضح بالمثال تقسيم عمود.xlsx
أفضل إجابة سليم حاصبيا قام بنشر يناير 1, 2020 أفضل إجابة قام بنشر يناير 1, 2020 جرب هذا الماكرو Option Explicit Sub divise_cells() Dim i%: i = 1 Dim dic As Object Dim itm, k, m%: m = 1 Range("c1").CurrentRegion.ClearContents Set dic = CreateObject("Scripting.Dictionary") Do Until Range("a" & i) = vbNullString dic(i) = Split(Range("a" & i), ",") i = i + 1 Loop For Each itm In dic.items Cells(m, 3).Resize(, UBound(itm) + 1) = itm m = m + 1 Next dic.RemoveAll: Set dic = Nothing End Sub Taksim.xlsm 2
علي عبد المنعم قام بنشر يناير 2, 2020 الكاتب قام بنشر يناير 2, 2020 شكرا للاستاذ سليم وللقائمين على المنتدي 1
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.