Skip to main content
TDS Calculator helps you calculate Tax Deducted at Source on payments to residents and non-residents, showing applicable rates, TDS amount, and net payable instantly.

Features

Instant TDS Calculation

Get real-time TDS amount and net payable value as soon as payment details are entered.

Resident & Non-Resident Support

Calculates TDS correctly for resident and non-resident recipients.

PAN & Section-Based Rates

Automatically applies correct rates based on PAN availability and TDS section.

Clear Breakdown

View TDS rate, deducted amount, and payable amount instantly.

Integration

Web (iframe)

<iframe
  src="https://tools.quicko.com/tds-calculator"
  width="100%"
  height="500"
  frameborder="0"
  allow="clipboard-write"
></iframe>
With customization:
<iframe
  id="tds-calculator"
  width="100%"
  height="500"
  frameborder="0"
  allow="clipboard-write"
></iframe>

<script>
  const theme = {
    mode: "dark",
    seed: "#006AD4"
  };
  
  const base64Theme = btoa(encodeURIComponent(JSON.stringify(theme)));
  document.getElementById('tds-calculator').src = 
    `https://tools.quicko.com/tds-calculator?theme=${encodedOptions}`;
</script>

Mobile (WebView)

import WebKit

let theme: [String: Any] = [
    "mode": "light",
    "seed": "#006AD4"
]

if let jsonData = try? JSONSerialization.data(withJSONObject: theme),
   let base64Theme = jsonData.base64EncodedString()
        .addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) {
    let toolUrl = "https://tools.quicko.com/tds-calculator?theme=\(base64Theme)"
    webView.load(URLRequest(url: URL(string: toolUrl)!))
}

Input Fields

The TDS Calculator collects the following information:
FieldDescriptionRequired
Recipient TypeIndividual / HUF / Sole Proprietor or OthersYes
Residential StatusResident or Non-ResidentYes
PAN AvailableWhether recipient PAN is availableYes
Nature of PaymentSection & nature of paymentYes
Amount of PaymentGross payment amountYes

Output

The calculator displays:
  • TDS Rate – Applicable rate based on section and conditions
  • TDS Amount – Tax deducted at source
  • Amount Payable – Net amount after TDS deduction
  • TDS Rule – Explanation of applicable threshold and rate

Use Cases

Content & Tax Guidance Websites

Enhance tax-related articles and guides by embedding an interactive TDS calculator.
Help users calculate accurate TDS before making payments.
Ensure correct TDS deduction for employee and vendor payments.

Demo

Powered byQuicko