Previous Year and Assessment Year Calculator
Choose a date:
How to fill form 15g for PF Withdrawal ?
আপনি কি সরকারকে কখনো Tax Pay করেছেন অর্থাৎ ITR File করেছেন ? যদি করে থাকেন Yes করুন । নতুবা No করুন ।যদি সরকারকে Tax Pay করে থাকেন তবে কোন Assessment Year এ Payment করেছিলেন ।ওই Assessment Year টি (b) এর জায়গায় Input করুন । Example- AY 2024-2025
এখানে আপনি আপনার PF এর Balance টি input করুন । PF এর Balance বলতে Employee Share + Employer Share Employee Share =50000 Employer Share =15000 Total=65000 বিদ্র:Pension এর টাকা Add হবেনা
এখানে আপনি এই Previous Year এর Income অর্থাৎ এই বছরের Income + PF এর Balance input করুন । Previous Year Starting Date: 1 April 2024 Previous Year Ending Date: 31 March 2025 মনে করুন এই Previous Year এ আপনি 6 মাস কাজ করেছেন ।তার পর Resign দিয়েছেন । আপনার Monthly Salary ছিল 10,000 হাজার টাকা So Calculation টি হবে 10,000*6+PF Balance আপনি যদি 7 মাস কাজ করে থাকেন । So Calculation টি হবে । 10,000*7+PF Balance আর আপনি যদি মাথা ঘামাতে না চান । Customer কত মাস কাজ করেছেন ।এক্ষেত্রে আপনি 1 বছরের Calculation করে input করুন । So Calculation টি হবে 10,000*12+PF Balance এখানে Total Income 2,50,000 লাখ এর নিচে হতে হবে । যদি 2,50,000 লাখ এর বেশি হয় ।এক্ষেত্রে এই ফরম টি বাতিল হয়ে যাবে ।
আপনি এর আগে কখনো 15G Fill করেছিলেন । ব্যাঙ্ক বা আরো অন্য কোনো জায়গায় ।যদি করে থাকেন ।এখানে Yes করুন ।নতুবা No করুন । Total No এর জায়গায় আপনি input করুন । আপনি কতবার 15G Fill করেছিলেন ।এই Financial Year এ একবার হলে 1 লিখুন । দুই বার হলে 2 লিখুন । Aggregate Amount এর জায়গায় Input করুন ।আপনি কত টাকার জন্য 15G Fill করেছিলেন ।
এখানে আপনার Total PF Amount টি Amount of income এর জায়গায় Enter করুন ।
PREVIOUS YEAR AND ASSESSMENT YEAR CALCULATOR CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Previous Year and Assessment Year Calculator</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
color: black; /* Add this line to set the font color to black */
}
h2 {
color: #333;
}
p {
color: #666;
}
.datepicker-container {
margin-bottom: 20px;
}
select {
padding: 8px;
border-radius: 5px;
border: none;
background-color: #f8f8f8;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
color: #333;
font-size: 16px;
text-align: center;
}
#inputDate {
text-align: center;
padding: 8px;
border-radius: 20px; /* Rounded corners */
border: none; /* Remove border */
background:linear-gradient(135deg, #1405f7, #ff4444);
color: white;
font-size: 16px;
}
#inputDate:focus {
outline: none; /* Remove the default focus outline */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add a shadow when focused */
}
#inputDate:focus {
outline: none; /* Remove the default focus outline */
border-color: #66afe9; /* Change border color when focused */
box-shadow: 0 0 5px #66afe9; /* Add a subtle shadow when focused */
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
background: #ff0000; /* Red color */
border: 1px solid #ff0000; /* Red color border */
color: #ffffff; /* White text color */
}
.ui-datepicker-calendar td a {
text-align: center;
line-height: 30px; /* Adjust the line height to vertically center the numbers */
}
button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border-radius: 5px;
border: none;
cursor: pointer;
margin-right: 10px;
}
button:hover {
background-color: #45a049;
}
#result {
margin-top: 20px;
}
#clearButton {
padding: 10px 20px;
background-color: #ff4444;
color: white;
border: none;
cursor: pointer;
}
#clearButton:hover {
background-color: #cc0000;
}
#todayButton {
padding: 10px 20px;
background-color: #007df3f5;
color: white;
border-radius: 5px;
border: none;
cursor: pointer;
margin-right: 10px;
}
#todayButton:hover {
background-color: #cc0000;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script>
$(function() {
$("#inputDate").datepicker({
dateFormat: 'dd-mm-yy',
changeMonth: true,
changeYear: true,
showButtonPanel: false // Remove the "Done" button
});
// Set default value to current date
var currentDate = new Date();
var day = currentDate.getDate();
var month = currentDate.getMonth() + 1; // January is 0
var year = currentDate.getFullYear();
var formattedDate = ('0' + day).slice(-2) + '-' + ('0' + month).slice(-2) + '-' + year;
$("#inputDate").val(formattedDate);
});
function setTodayDate() {
var currentDate = new Date();
var day = ('0' + currentDate.getDate()).slice(-2); // Pad with leading zero
var month = ('0' + (currentDate.getMonth() + 1)).slice(-2); // Pad with leading zero
var year = currentDate.getFullYear();
var formattedDate = day + '-' + month + '-' + year;
$("#inputDate").val(formattedDate);
}
function calculateFYandAY() {
var inputDate = $("#inputDate").datepicker("getDate");
var fyStartYear = inputDate.getMonth() >= 2 ? inputDate.getFullYear() : inputDate.getFullYear() - 1;
var fyEndYear = fyStartYear + 1;
var fy = fyStartYear + "-" + fyEndYear;
var ayStartYear = fyEndYear;
var ayEndYear = ayStartYear + 1;
var ay = ayStartYear + "-" + ayEndYear;
document.getElementById("fyStartResult").innerHTML = "Previous Year Starting Date: 1 April " + fyStartYear;
document.getElementById("fyEndResult").innerHTML = "Previous Year Ending Date: 31 March " + fyEndYear;
document.getElementById("fyResult").innerHTML = "Previous Year: " + fy;
document.getElementById("ayResult").innerHTML = "Assessment Year: " + ay;
}
function clearResults() {
document.getElementById("fyStartResult").innerHTML = "";
document.getElementById("fyEndResult").innerHTML = "";
document.getElementById("fyResult").innerHTML = "";
document.getElementById("ayResult").innerHTML = "";
}
</script>
</head>
<body>
<div style="max-width: 500px; margin: auto; background-color: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); text-align: center;">
<h4>Previous Year and Assessment Year Calculator</h4>
<div class="datepicker-container">
<p>Choose a date:</p>
<input type="text" id="inputDate">
</div>
<button id="todayButton" onclick="setTodayDate()">Today</button>
<button onclick="calculateFYandAY()">Calculate</button>
<button id="clearButton" onclick="clearResults()">Clear</button>
<div id="result">
<p id="fyStartResult"></p>
<p id="fyEndResult"></p>
<p id="fyResult"></p>
<p id="ayResult"></p>
</div>
</div>
</body>
</html>

