The WORKDAY function is ideal for calculating a set number of days forward (or backward) in time but skip the weekends and possibly holidays. There are two versions of the WORKDAY function:
مدونة مجانية غير هادفة للربح تهتم بنشر العلم في مجال الضرائب والقانون المصري واالمحاسبة والمراجعة والهدف المنشود محاولة تنظيم الكم الضخم من المعلومات المحاسبية والضريبية على الانترنت للتيسير على الباحثين
The WORKDAY function is ideal for calculating a set number of days forward (or backward) in time but skip the weekends and possibly holidays. There are two versions of the WORKDAY function:
The EDATE function allows you to move a set number of months forward or backward in time based on a specified date.
The EOMONTH (End of Month) function accepts a date or a reference to a cell holding a date and produces a new date that is the last day of the month for a set number of months forward or backward in time.
For example: If we supply the date “1/15/2021” and ask for the end of the month 3 months from that date, we will produce “4/30/2021” as a result. We move 3 months into the future then push to the end of the resultant month.
The ROUND function allows you to round your results to a set number of decimal places.
When we perform calculations, often the result is displayed to a level of precision beyond our needs.
The AGGREGATE function allows you to sum (along with other functions like AVERAGE, COUNT, MAX, MIN, etc.) a range of cells while ignoring any cells that may contain errors as well as ignoring hidden values due to hiding rows and/or columns.
Take the following as an example:
شيت اكسل حساب ضريبة المرتبات عن طريق الدوال
https://drive.google.com/file/d/1lEFaUJWjz2o_ii6j7dT7FjlpGtGimrjS/view?usp=sharing
شرح دالة filter مع الامثلة
The FILTER function in Excel is used to filter a range of data based on the criteria that you specify.
The function belongs to the category of Dynamic Arrays functions. The result is an array of values that automatically spills into a range of cells, starting from the cell where you enter a formula.
The syntax of the FILTER function is as follows:
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