Select Age
17 or less
18
19
20 to 29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 or more
Select Education
Secondary school (high school)
One-year program (College/University)
Two-year program
Bachelor's degree (Three or more years)
Two or more certificates (One must be 3+ years)
Master's degree
Doctoral level university degree (PhD)
None or less than a year
1 year
2 years
3 years
4 years
5 years or more
None
1 to 2 years
3 years or more
None
Sibling in Canada (Citizen/PR)
Valid Job Offer (NOC TEER 0, 1, 2 or 3)
Provincial Nomination (PNP)
French Language Skills (CLB 7+)
Canadian Education (2+ years)
Your Estimated CRS Score:0
*This is an estimate based on a single applicant profile. Actual IRCC results may vary based on specific spouse factors and skill transferability combinations.
Understanding the Express Entry CRS Score
The Comprehensive Ranking System (CRS) is a points-based system used by the Government of Canada to assess and rank candidates in the Express Entry pool. Candidates are ranked against each other, and those with the highest scores are regularly invited to apply for Permanent Residency through "rounds of invitations" known as draws.
How Points are Allocated
The system allocates a total of 1,200 points across four main sections:
Core Human Capital: Includes age, education, and language proficiency.
Spouse or Common-law Partner: Factors relating to a partner's education and language skills.
Skill Transferability: Combinations of education and work experience.
Additional Points: Includes Provincial Nominations (worth 600 points), job offers, and Canadian siblings.
Realistic Example of a CRS Calculation
Let's look at a typical high-scoring candidate profile:
Factor
Candidate Profile
Estimated Points
Age
28 years old
110
Education
Master's Degree
135
Language
IELTS 8.0 (CLB 9)
124
Work Exp
1 Year Canadian Exp
40
Total
Potential Score
409+
How to Increase Your CRS Score
If your score is below the recent draw cut-offs, there are several ways to improve your standing:
Retake Language Tests: Moving from CLB 8 to CLB 9 can often result in a 20-30 point jump due to skill transferability bonuses.
Gain More Work Experience: Completing another year of work, especially within Canada, adds significant value.
Provincial Nominee Programs (PNP): Receiving a nomination from a Canadian province provides an automatic 600-point boost, virtually guaranteeing an Invitation to Apply (ITA).
Improve Education: Completing an additional certificate or degree can increase your core points and your transferability points.
function calculateCRSScore() {
var agePoints = parseInt(document.getElementById('age').value);
var eduPoints = parseInt(document.getElementById('education').value);
var langPoints = parseInt(document.getElementById('language').value);
var canWorkPoints = parseInt(document.getElementById('canWork').value);
var foreignWorkPoints = parseInt(document.getElementById('foreignWork').value);
var addPoints = parseInt(document.getElementById('additional').value);
// Basic Validation
if (isNaN(agePoints) || isNaN(eduPoints) || isNaN(langPoints)) {
alert("Please select all basic fields to get an accurate score.");
return;
}
// Skill Transferability Factors (Simplified Logic for Tool)
// In actual CRS, Foreign Work + High Language = Extra Points
var transferability = 0;
if (langPoints >= 124 && foreignWorkPoints > 0) {
transferability += 25; // Bonus for good language + foreign experience
}
if (eduPoints >= 128 && langPoints >= 124) {
transferability += 25; // Bonus for high education + good language
}
var totalScore = agePoints + eduPoints + langPoints + canWorkPoints + foreignWorkPoints + addPoints + transferability;
// Cap at 1200
if (totalScore > 1200) {
totalScore = 1200;
}
document.getElementById('crs-total-score').innerHTML = totalScore;
document.getElementById('crs-result-box').style.display = 'block';
// Smooth scroll to result
document.getElementById('crs-result-box').scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}