المشاركات

عرض المشاركات من فبراير, ٢٠١٨

التدريب العملى فى المحاسبة والضرائب للشركات الجزء الاول والثاني

صورة
التدريب العملى فى المحاسبة والضرائب للشركات الجزء الاول والثاني التدريب العملى فى المحاسبة والضرائب للشركات الجزء الاول والثاني 51 موضوع من اول تعريف علم المحاسبة حتي اعداد القوائم المالية 1- تعريف علم المحاسبة 2- خصائص علم المحاسبة 3-فروض علم المحاسبة 4- مبادئ علم المحاسبة 5-الحسابات الرئيسية 6- الحسابات الفرعية 7-التفرقة بين المدين والدائن 8- التفرقة بيت العملاء والمديينين 9-التفرقة بين الموردين والدائنين 10-التعرف على الدورة المحاسبية 11-نظرية القيد المزدوج 12- المعادلة المحاسبية 13-كيفية اعداد دليل الحسابات 14-الدفاتر الالزامية 15-التفرقة بين المصروف الايرادى والراسمالى 16-المعالجة المحاسبية لراس المال وزيادته وانخفاضه 17-المعالجة المحاسبية للمسحوبات 18- ضريبية الارباح التجارية والصناعية 19- ضريبة المبيعات 20- معيار الاصول الثابتة ومعالجاته 21- معيار المخزون ومعالجاته 22- معيار الايراد ومعالجاته 23-كيفية تسعير الرسائل الاستيرادية الخ ..... رابط التحميل http://evassmat.com/JRIf

Function VLOOKUP Code

صورة
Public Function VLOOKUP code: Public Function VLOOKUP1(ByVal lookup_value As String, ByVal table_array As Range, ByVal col_index_num As Integer) As String         Dim i As Long         For i = 1 To table_array.Rows.Count             If lookup_value = table_array.Cells(table_array.Row + i - 1, 1) Then                 VLOOKUP1 = table_array.Cells(table_array.Row + i - 1, col_index_num)                 Exit For             End If         Next i  End Function

Introduction to Excel VBA

Introduction to Excel VBA 1.1 The Concept of Excel VBA VBA is the acronym for Visual Basic for Applications. It is an integration of the Microsoft's event-driven programming language Visual Basic with Microsoft Office applications such as Microsoft Excel, Microsoft Word, Microsoft PowerPoint and more. By running Visual Basic IDE within the Microsoft Office applications, we can build customized solutions and programs to enhance the capabilities of those applications. Among the Visual Basic for applications, Microsoft Excel VBA is the most popular. There are many reasons why we should learn VBA for Microsoft Excel, among them is you can learn the fundamentals of Visual Basic programming within the MS Excel environment, without having to purchase a copy of Microsoft Visual Basic software. Another reason is by learning Excel VBA; you can build custom made functions to complement the built-in formulas and functions of Microsoft Excel. Although MS Excel ha