Finding last used row and column is one of the basic and important task for any automation in excel using VBA. For compiling sheets, workbooks and arranging data automatically, you are required to find the limit of the data on sheets.
مدونة مجانية غير هادفة للربح تهتم بنشر العلم في مجال الضرائب والقانون المصري واالمحاسبة والمراجعة والهدف المنشود محاولة تنظيم الكم الضخم من المعلومات المحاسبية والضريبية على الانترنت للتيسير على الباحثين
Finding last used row and column is one of the basic and important task for any automation in excel using VBA. For compiling sheets, workbooks and arranging data automatically, you are required to find the limit of the data on sheets.
برنامج حاسبة ضريبة كسب العمل والتامينات الاجتماعية
طبقا لقرار 26 لسنة 2020 تعديل قانون الدخل
واللائحة التنفيذية لقانون التامينات الاجتماعية رقم 148 لسنة 2019
https://drive.google.com/file/d/1K0oyyPEQzm-OJYiC9h_h4Q9rrWwI5ZED/view?usp=sharing
معاش الدفعة الواحدة بقانون المعاشات الجديد يصرف فى 8 حالات.. اعرف التفاصيل
استحدث قانون التأمينات الاجتماعية والمعاشات الجديد الصادر بالقانون رقم 148لسنة 2019، نظام "تعويض الدفعة الواحدة"، ونص علي أن يستحق هذا التعويض فى حالة انتهاء خدمة أو نشاط أو عمل المؤمن عليه، ولم تتوافر فى شأنه شروط استحقاق المعاش.
Code for copy data to last written row
Sub CopyFilledCells()
Dim lngLastRow As Long
Sheet2.UsedRange.Clear
With Sheet1
lngLastRow = .Range("I2").End(xlDown).Row
.Range("B3:I" & lngLastRow).Copy Destination:=Sheet2.Range("A1")
End With
End Sub
كود vba دالة for next لتلوين خلال في رينج معين
dim x as integer
For x = 1 to 20
If cells (x, 1) = "" then
cells(x,1).interior.color = 65535
end if
next x
كود vba لاسترجاع كومنت الى خلايا معينة
-----------------------------------------------------------------------------------------------------
() Sub comment
If Range("a1") Is Nothing Then
Range("c1").Value = "hi"
Else
Range("c1").Value = Range("a1").comment.Text
End If
End Sub
اجر الاشتراك بقانون التامينات 148 لسنة 2019
المصدر : قناه احترف شئون العاملين للاستاذ / محمد الليثي
هذه أخطاء شائعة يرتكبها معظم الأشخاص (بمن فيهم أنا) في Microsoft Excel كل يوم. يغطي الأشياء التي لا يجب عليك القيام بها في Excel. سأوضح لك ما الذي تبحث عنه وماذا تفعل بدلاً من ذلك. ملاحظة جانبية: كل ميزة من ميزات Excel هذه لها فوائدها الخاصة. خذ هذه كمجموعة من أفضل الممارسات لاتباعها في Excel.
00:00 7 Excel Things You Should Never Do in Excel 00:26 Creating External Links 02:45 Manually Adjusting Text in Cells 03:59 Merging Cells 06:52 Poor File Structure 07:48 Hiding Rows & Columns 10:08 Hardcoding Values in Formulas 12:03 Not Using Excel Tables 14:52 Wrap Up