حسن العسوس قام بنشر أغسطس 3, 2019 قام بنشر أغسطس 3, 2019 (معدل) السلام عليكم كيف اقوم بتجميع عامود طويل في صفحة اكسل لتسهيل الطباعة جزاكم الله خيرا Refx.xls تم تعديل أغسطس 3, 2019 بواسطه حسن العسوس
أفضل إجابة سليم حاصبيا قام بنشر أغسطس 3, 2019 أفضل إجابة قام بنشر أغسطس 3, 2019 جرب هذا الكود Option Explicit Sub Facilite_table() Dim i%, col%, R%, How_many How_many = InputBox("How Many Columns Do You Want") Range("c1").CurrentRegion.ClearContents i = 1: col = 3: R = 1 Do Until Range("a" & i) = vbNullString Cells(R, col) = Range("a" & i) R = R + 1 If R > How_many Then col = col + 1: R = 1 i = i + 1 Loop Range("c1").CurrentRegion.Columns.AutoFit 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.