Back to Blog
Data Analysis

Excel Data Analysis for Research Projects: A Practical Guide for Nigerian Students

You do not need expensive software to analyze your research data. Learn how to use Microsoft Excel for descriptive statistics, correlation, regression, and creating professional charts for your Chapter Four.

8 January 20266 min read1458 views0 comments
E

Why Excel Is Your Friend

Not everyone has access to SPSS. The license is expensive, and many Nigerian universities do not provide it to students. The good news? Microsoft Excel can handle most analyses required for undergraduate projects.

A student from Taraba State University contacted us worried because her department did not have SPSS and she could not afford it. We showed her how to do everything she needed in Excel. She analyzed her data, created her tables and charts, and defended successfully.

This guide will show you how to do the same.

Setting Up Your Data in Excel

Organizing Your Spreadsheet

Before any analysis, your data must be properly organized:

  • Row 1: Variable names (headers)
  • Each subsequent row: One respondent
  • Each column: One variable/question

Example layout:

| ID | Gender | Age | Q1 | Q2 | Q3 | Q4 | Q5 |

|----|--------|-----|----|----|----|----|-----|

| 1 | 1 | 2 | 4 | 5 | 3 | 4 | 5 |

| 2 | 2 | 1 | 3 | 4 | 4 | 5 | 4 |

| 3 | 1 | 3 | 5 | 5 | 5 | 4 | 5 |

Where Gender: 1=Male, 2=Female; Age: 1=18-24, 2=25-34, 3=35-44; and Q1-Q5 are Likert scale responses (1-5).

Coding Your Data

Convert all responses to numbers before entering:

  • Gender: Male=1, Female=2
  • Education: SSCE=1, OND/NCE=2, HND/BSc=3, Postgraduate=4
  • Likert: Strongly Disagree=1, Disagree=2, Neutral=3, Agree=4, Strongly Agree=5

Keep a coding sheet for reference when interpreting results.

Enabling the Data Analysis ToolPak

Excel has a built-in Data Analysis tool, but it may not be enabled by default.

To enable it:

  1. Click File then Options
  2. Click Add-ins
  3. At the bottom, select Excel Add-ins and click Go
  4. Check Analysis ToolPak and click OK

Now you will see Data Analysis in the Data tab.

Descriptive Statistics

Frequency Tables (For Demographics)

Use COUNTIF function to count responses:

Formula: =COUNTIF(range, criteria)

Example: To count males (coded as 1) in column B:

=COUNTIF(B2:B201, 1)

To calculate percentage:

=COUNTIF(B2:B201, 1)/COUNT(B2:B201)*100

Create a frequency table:

| Gender | Frequency | Percentage |

|--------|-----------|------------|

| Male | =COUNTIF(B2:B201,1) | =E2/SUM(E2:E3)*100 |

| Female | =COUNTIF(B2:B201,2) | =E3/SUM(E2:E3)*100 |

Mean, Standard Deviation, and Other Statistics

For Likert scale questions, calculate:

  • Mean: =AVERAGE(range)
  • Standard Deviation: =STDEV(range)
  • Minimum: =MIN(range)
  • Maximum: =MAX(range)
  • Count: =COUNT(range)

Example for Q1 in column D:

Mean: =AVERAGE(D2:D201)

SD: =STDEV(D2:D201)

Using Data Analysis Tool:

  1. Click Data tab then Data Analysis
  2. Select Descriptive Statistics and click OK
  3. Select your data range
  4. Check Summary Statistics
  5. Click OK

This gives you mean, standard error, median, mode, standard deviation, variance, range, minimum, maximum, and count all at once.

Creating Composite Variables

If you have multiple questions measuring one variable (e.g., Q1-Q5 measuring "Social Media Marketing Exposure"), create a composite score:

=AVERAGE(D2:H2)

This averages the responses for that respondent. Copy down for all respondents.

Now you can use this composite variable for correlation and regression.

Correlation Analysis

Correlation measures the relationship between two variables.

Using CORREL Function:

=CORREL(range1, range2)

Example: Correlation between Social Media Marketing (column I) and Purchase Intention (column J):

=CORREL(I2:I201, J2:J201)

This gives you the Pearson correlation coefficient (r).

Interpreting Correlation:

  • 0.00 to 0.29: Weak correlation
  • 0.30 to 0.49: Moderate correlation
  • 0.50 to 0.69: Strong correlation
  • 0.70 to 1.00: Very strong correlation

Negative values indicate inverse relationship.

Using Data Analysis Tool for Correlation Matrix:

  1. Click Data then Data Analysis
  2. Select Correlation and click OK
  3. Select the range containing all variables you want to correlate
  4. Check Labels in first row if applicable
  5. Click OK

This creates a correlation matrix showing relationships between all selected variables.

Regression Analysis

Regression determines how independent variables affect a dependent variable.

Using Data Analysis Tool:

  1. Click Data then Data Analysis
  2. Select Regression and click OK
  3. Input Y Range: Select your dependent variable column (with header)
  4. Input X Range: Select your independent variable column(s) (with header)
  5. Check Labels
  6. Click OK

Key Outputs to Report:

  • R Square: How much of the variance in Y is explained by X (e.g., 0.45 means 45%)
  • Adjusted R Square: R Square adjusted for number of variables
  • Significance F: If less than 0.05, the model is significant
  • Coefficients: The effect of each X variable on Y
  • P-value: If less than 0.05, that variable significantly affects Y

Creating Charts for Chapter Four

Bar Charts (For Categorical Data)

  1. Create a summary table with categories and frequencies
  2. Select the data
  3. Click Insert then select Column Chart or Bar Chart
  4. Choose a style (2D is usually cleaner for academic work)
  5. Add chart title and axis labels

Pie Charts (For Showing Proportions)

  1. Create a summary table with categories and frequencies
  2. Select the data
  3. Click Insert then Pie Chart
  4. Add data labels showing percentages
  5. Add chart title

Tip: Right-click on the chart and select "Add Data Labels" then format to show percentages.

Formatting Charts for Academic Work

  • Use simple, clean designs (avoid 3D effects)
  • Include clear titles
  • Label axes appropriately
  • Use professional colors (avoid bright, flashy colors)
  • Ensure text is readable when printed

Creating Professional Tables

When presenting tables in your project:

  1. Create the table in Excel with all data
  2. Format with borders and headers
  3. Copy and paste into Word as a picture or formatted table
  4. Add table number and title above the table
  5. Add source note below if applicable

Example format:

Table 4.1: Gender Distribution of Respondents

| Gender | Frequency | Percentage |

|--------|-----------|------------|

| Male | 87 | 43.5 |

| Female | 113 | 56.5 |

| Total | 200 | 100.0 |

Source: Field Survey, 2024

Limitations of Excel

While Excel can handle most undergraduate analyses, be aware of limitations:

  • No built-in Cronbach Alpha (you need to calculate manually or use online calculators)
  • Limited advanced statistical tests (Chi-square, ANOVA require more complex setup)
  • No automatic significance testing for correlations (use online p-value calculators)

For most undergraduate projects, these limitations are not critical. If your study requires advanced statistics, consider SPSS, Stata, or asking for assistance.

Calculating Statistical Significance

Excel does not automatically give p-values for correlations. To determine significance:

Option 1: Use online calculator

Search for "correlation significance calculator" and enter your r value and sample size.

Option 2: Use T-TEST function for comparing means

=T.TEST(range1, range2, tails, type)

Where tails=2 for two-tailed test, type=2 for equal variance

Option 3: Use FDIST for regression significance

Excel regression output includes F-statistic and its significance.

Need Help With Your Data Analysis?

Whether you are using Excel, SPSS, or any other tool, AlimsWrite can help you analyze your research data correctly and present it professionally.

We do not just give you tables. We explain what they mean so you can defend your work confidently.

Contact us today for data analysis assistance.

Tags:

Excel data analysisresearch datastatistics Exceldata analysis tutorialNigerian students
Share this article:
A

AlimsWrite Team

We are a team of academic writing experts dedicated to helping students succeed.

Learn more about us

Comments (0)

Loading comments...

Need Professional Help With Your Project?

Our team of experts is ready to assist you with any academic writing task.