Categories
Salary and CTC Breakup

CTC Salary Calculator in Excel with Complete Payroll Setup

Click here to download automatic Complete Payroll Calculator in Excel. This Excel Software includes most likely all part of Payroll Calculation. It’s Includes following Features:-

  • You can calculate Cost to company CTC Automatic once you put total ctc.
  • You can restructure allowances and CTC components as per your need.
  • Income Tax  to be calculate automatic.
  • You can set your investment Declaration or Proofs Planing as per requirement.
  • This sheet will calculate House rent allowance ( HRA Rent Exemption calculation) under section 10(13A) automatic as per your rent paid and selected city.
  • You can customize your structure like add / less : PF (Employees’ Provident Fund), Employment State Insurance ( ESIC), Gratuity, Mediclaim, any other benefit, Bonus, Minwages.
  • You can control to deduct PF on Basic OR PF on Allowances or PF on min wages of PF or you can select No if you are not eligible for pf deduction.
  • You can Se-off loss / income from house property u/s 24(b) as per Income Tax Act.
  • You can add reimbursement components as per bills planing to get more benefit in tax.
  • This sheet will give you Net payment Automatically as per your Inputs.
  • Best part of this software is that, you can generate  your salary pay slip from CTC in one click and change payslip in excel as per needs.
  • We have added logo on slip so that you can change it.
  • You can generate any month salary slip from excel format in one click even you can generate full and final slip.
  • This sheet is Free to download

  • Paid Support Available at :
  • Email: ajityadav121@gmail.com

Click here to Download Automated Excel Sheet to calculate cost to company (CTC), Income Tax Calculation along with all investment planning (Deduction U/C VI-A)  and all Major Exemptions allowed + reimbursement  in Salary.

This sheet will allowed to planning your tax saving, make salary structure as per your choice and know the Net in hand Automatically.

Thanks! Ajit

Categories
Increment Letters in PDF Payroll

Prepare Salary Increment PDF Letters using Mail Merge from Excel

Hi folks,

I will explain below one of the most common practice used in HR – human resource department e.g. Increment Letters Preparation, please follow the all steps. I will refer here following steps and topics:

  1. A Excel sheet with 5000 employee’s
  2. A word file which Increment letter template
  3. Mail merge Process
  4. MS word VBA code to generate PDF files from word
  5. MS word VBA code to hide zero value from increment letter for any allowance
  6. MS word VBA code to change authorize signatory’s scan signature as per manager name.
  7. Excel VBA Code to set individual password in employee’s separates increment letter ( Make sure this will work only if you are using office 32 bit only). Use info excel formula to get to know office version e.g.: =INFO(“OSVERSION”)

VBA Code for PDF generating from MS word file using mail merge

Sub Pdf_files_from_word()
'This code create by Ajit Yadav @99Excel.com
Dim fs, DocName, PDFPath, Folderpath, From, Till, Message
Folderpath = ActiveDocument.Path & "\" & "PDF Letters"
Set fs = CreateObject("Scripting.FileSystemObject")
If fs.FolderExists(Folderpath) = False Then
fs.createfolder (Folderpath)
Else
End If
        
From = 1    'Change From value
Till = 10    'Change Till value
 
Message = (Till - From) + 1
While From <= Till

    ActiveDocument.MailMerge.DataSource.ActiveRecord = From
    DocName = ActiveDocument.Fields(4).Result
    PDFPath = Folderpath & "\" & DocName & ".pdf"
    Call HideBlankCells
    Call Signature_Ins
    ActiveDocument.ExportAsFixedFormat OutputFileName:=PDFPath, ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:=wdExportOptimizeForPrint, Range:=wdExportAllDocument, Item:=wdExportDocumentContent, IncludeDocProps:=True
    Call UnHideBlankCells
From = From + 1
Wend
MsgBox "Done"
End Sub



Sub HideBlankCells()
Dim TableNo, ColumnNo, RowNo, I, GetValues
TableNo = 1
ColumnNo = 2
RowNo = ActiveDocument.Tables(TableNo).Rows.Count

For I = 2 To (RowNo - 2)
GetValues = CleanString(Trim(ActiveDocument.Tables(TableNo).Cell(I, ColumnNo).Range.Text))
ActiveDocument.Tables(TableNo).Cell(I, ColumnNo).Range.Select
If GetValues = 0 Or GetValues = "" Or GetValues = "0" Or GetValues = " " Or GetValues = "" Then
ActiveDocument.Tables(TableNo).Rows(I).Select
Selection.Rows.HeightRule = wdRowHeightExactly
Selection.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
Selection.Rows.Height = CentimetersToPoints(0.001)
Else: End If
Next I

End Sub

Sub UnHideBlankCells()
Dim TableNo, ColumnNo, RowHigh, RowNo
TableNo = 1
ColumnNo = 1
RowHeightV = 0.8
RowNo = ActiveDocument.Tables(TableNo).Rows.Count

ActiveDocument.Tables(TableNo).Select
Selection.Cells.VerticalAlignment = wdCellAlignVerticalCenter
Selection.Rows.HeightRule = wdRowHeightExactly
Selection.Rows.Height = CentimetersToPoints(RowHeightV)

    For I = 2 To (RowNo - 1)
    ActiveDocument.Tables(TableNo).Rows(I).Select
    Selection.Rows.Borders(wdBorderBottom).LineStyle = wdLineStyleSingle
    Next I

End Sub


Function Signature_Ins()
If ActiveDocument.Fields(17).Result = "Ankita Joshi" Then
ActiveDocument.Shapes("Rectangle 1").Select
Selection.ShapeRange.Fill.UserPicture (ActiveDocument.Path & "\" & "Sign" & "\" & "Signature_Ankita Joshi.jpg")
ElseIf ActiveDocument.Fields(17).Result = "Vikas Maurya" Then
ActiveDocument.Shapes("Rectangle 1").Select
Selection.ShapeRange.Fill.UserPicture (ActiveDocument.Path & "\" & "Sign" & "\" & "Signature_Vikas Maurya.jpg")
Else
ActiveDocument.Shapes("Rectangle 1").Select
Selection.ShapeRange.Fill.UserPicture (ActiveDocument.Path & "\" & "Sign" & "\" & "Blank.jpg")
End If
End Function

Categories
Payroll

Time to declare Tax regime and Investment Tax Planning for FY 2021-22

Dear All HR and Payroll Team,

It is time to get collect Tax regime old regime status and New Regime under section 115bac for tax computation for new financial Year 2021- 22.

Because we are in April and this is very first month for this financial Year so we need to send form 12BA investment declaration form to all employees to collect their this year tax planning details before calculating tax for April 2021.

Download ready to use Excel Both tax regime tax calculation and compare Sheet.

:::Posted from Mobile:::