Progress 5/10
Lesson 5

Introduction to SPSS: Interface and Data Entry

Get started with SPSS software β€” learn the interface, variable types, and how to enter survey data properly.

April 11, 2026

What is SPSS?

SPSS (Statistical Package for the Social Sciences) is the most widely used statistical software in academic research, especially in education, social sciences, and business. It allows you to enter data, perform statistical analyses, and generate reports.

SPSS Interface: Two Views

1. Variable View

This is where you define your variables (columns). Each row represents one variable:

PropertyDescriptionExample
NameVariable name (no spaces, max 64 chars)Q1, Age, Gender
TypeData typeNumeric, String
WidthNumber of characters8
DecimalsDecimal places0 for Likert, 2 for scores
LabelFull description of the variable"Job satisfaction level"
ValuesCode meanings for categorical variables1=Male, 2=Female
MeasureLevel of measurementScale, Ordinal, Nominal

2. Data View

This is where you enter the actual data. Each row = one respondent, each column = one variable.

Setting Up Variables for a Survey

For a typical survey with demographic questions and Likert-scale items:

Step 1: Define Demographic Variables

  • Gender: Name=Gender, Type=Numeric, Values: 1=Male, 2=Female, Measure=Nominal
  • Age: Name=Age, Type=Numeric, Measure=Scale (or Ordinal if using ranges)
  • Education: Name=Education, Type=Numeric, Values: 1=Bachelor, 2=Master, 3=PhD, Measure=Ordinal

Step 2: Define Likert Scale Items

  • Name: Q1, Q2, Q3... (or D1_Q1, D1_Q2 for dimension-based naming)
  • Label: Full text of the question
  • Values: 1=Strongly Disagree, 2=Disagree, 3=Neutral, 4=Agree, 5=Strongly Agree
  • Measure: Ordinal (or Scale for analysis purposes)

Data Entry Tips

  1. Number questionnaires before distributing (ID column)
  2. Enter data in one session if possible to reduce errors
  3. Double-check a random sample of entries
  4. Use Analyze β†’ Descriptive Statistics β†’ Frequencies to spot out-of-range values
  5. Save your file frequently (.sav format)

Creating Computed Variables

After data entry, you need to compute dimension averages:

Transform β†’ Compute Variable

Dim1_Avg = MEAN(Q1, Q2, Q3, Q4, Q5)

This creates a new variable representing the average score for Dimension 1.

Practice: Open SPSS, create a new file with 3 demographic variables and 10 Likert-scale items. Enter data for 5 imaginary respondents.