Skip to main content
Check Residential Status tool helps you determine whether an individual qualifies as Resident, Non-Resident, or Resident but Not Ordinarily Resident (RNOR) for Indian income tax purposes based on their physical presence in India.

Features

Accurate Status Determination

Calculates residential status based on stay duration and tax residency rules.

Multi-Year Analysis

Considers current and previous years’ stay for comprehensive assessment.

RNOR Detection

Identifies Resident but Not Ordinarily Resident status.

Clear Explanation

Provides reasoning behind the determined residential status.

Integration

Web (iframe)

<iframe
  src="https://tools.quicko.com/check-residential-status"
  width="100%"
  height="500"
  frameborder="0"
  allow="clipboard-write"
></iframe>
With customization:
<iframe
  id="residential-status-checker"
  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('residential-status-checker').src = 
    `https://tools.quicko.com/check-residential-status?theme=${base64Theme}`;
</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/check-residential-status?theme=\(base64Theme)"
    webView.load(URLRequest(url: URL(string: toolUrl)!))
}

Residential Status Rules

The tool follows Income Tax Act provisions:
An individual is a Resident if they satisfy any one of the following conditions:
  • Present in India for 182 days or more during the FY
  • Present in India for 60 days or more during the FY AND 365 days or more in preceding 4 years
An individual who does not satisfy the conditions for being a Resident is a Non-Resident.
A Resident qualifies as RNOR if they satisfy any one condition:
  • Non-resident in 9 out of 10 preceding years
  • Present in India for 729 days or less in preceding 7 years

Demo

Powered byQuicko