Monthly Archives: June 2022

Payroll Voucher Types in Tally Prime

Tally Prime Payroll provides you with Payroll, Attendance, and Payment Voucher Types. You can define a template called Voucher Class to automate and control usage of ledger accounts and computed values to be posted. It is a powerful and configurable option that enables you to define the rules of voucher entry for a particular voucher… Read More »

Payroll Masters and Income Tax Details In Tally Prime

Configure Tax Details in Tally Prime (Payroll) You can use the Tax Configuration screen to make all the necessary configuration in the following areas:. View the Tax Configuration screen Gateway of Tally > Alter > type or select Payroll Income Tax Configurations > and press Enter.Alternatively, press Alt+G (Go To) > Alter Master > type or select Payroll Income Tax Configurations > and press Enter.You can drill down… Read More »

Enable Payroll in Tally Prime

You can enable or activate payroll in Tally.ERP 9 from the Cost/Profit Centres Management section under F1: Accounting Features in F11: Features . You can then enable the statutory features provided for Payroll from F11 > F3 features. Enable Payroll Feature 1. Go to Gateway of Tally > F11: Features > F1: Accounting Features . 2. Tab down to Cost/Profit Centres Management section. 3. Set the option Maintain payroll to Yes. 4. Set the option Maintain more than… Read More »

TCS Reports in Tally Prime

TCS Outstanding Report You can view any TCS that is outstanding. You can either view it based on nature of good or party-wise. To view TCS Outstanding report ● Go to Gateway of Tally > Display > Statutory Reports > TCS Reports > TCS Outstandings . The TCS Outstanding report displaying all the pending TCS payments appears as shown below: To view the party-wise information ● Click F6:Party-wise . A brief explanation about… Read More »

Creation of Masters In Tally Prime

Party Ledger (TCS) TCS will be collected on the basis of the collectee type defined in the party ledger. 1. Go to Gateway of Tally > Accounts Info. > Ledgers > Create 2. Press F12 and set the option Allow advanced entries in TCS masters to Yes . 3. Enter the Name and select Sundry Debtors in the Under field. 4. Enable the option Maintain bill-by-bill , to track the TCS bills. 5. Enable the option Is TCS Applicable , to allow TCS… Read More »

Configuring TCS In Tally Prime

You can enable the TCS feature in Tally.ERP 9, provide surcharge details, record transactions and generate the required reports and returns. 1. Go to Gateway of Tally > F11: Features > Statutory and Taxation . 2. In the Company Operations Alteration screen, set Enable Tax Collected at Source (TCS) to Yes . 3. Enable the option Set/alter TCS details . The Company Operations Alteration screen appears as shown below: 4. Press F12 . ● Set Enable surcharge and cess… Read More »

Basic concepts of TCS In Tally Prime

TCS (Tax Collected at Source) is the tax that a seller collects from the buyer during the sale of specific goods under provision 206C, or any other goods on the basis of realisation.  Tally Prime not only supports the latest budget changes for TCS but also provides you with a comprehensive TCS solution for your business… Read More »

HTML Lists

HTML lists allow web developers to group a set of related items in lists. Unordered HTML List An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. The list items will be marked with bullets (small black circles) by default: Example <html><body><h2>An unordered HTML list</h2><ul>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ul></body></html> Result: An unordered HTML list Coffee Tea Milk… Read More »

HTML Tables

HTML tables allow web developers to arrange data into rows and columns. Define an HTML Table A table in HTML consists of table cells inside rows and columns Example A simple HTML table:<html><style>table, th, td {border:1px solid black;}</style><body><table>  <tr>    <th>Company</th>    <th>Contact</th>    <th>Country</th>  </tr>  <tr>    <td>Alfreds Futterkiste</td>    <td>Maria Anders</td>    <td>Germany</td>  </tr>  <tr>    <td>Centro comercial Moctezuma</td>    <td>Francisco Chang</td>    <td>Mexico</td>  </tr></table></body></html> Result: Table Cells Each table cell is defined by a <td> and a </td> tag.… Read More »