0
0
Digital-marketingHow-ToBeginner · 3 min read

How to Calculate Engagement Rate: Simple Formula and Examples

To calculate engagement rate, divide the total number of interactions (likes, comments, shares) by the total number of followers or impressions, then multiply by 100 to get a percentage. The formula is (Engagements ÷ Followers) × 100 or (Engagements ÷ Impressions) × 100 depending on your goal.
📐

Syntax

The basic formula to calculate engagement rate is:

Engagement Rate (%) = (Total Engagements ÷ Total Followers) × 100

Where:

  • Total Engagements means all interactions like likes, comments, shares, and clicks.
  • Total Followers is the number of people following your account or page.

Alternatively, you can use Total Impressions instead of followers if you want to measure engagement based on how many times your content was seen.

digital_marketing
Engagement Rate (%) = (Total Engagements ÷ Total Followers) × 100
💻

Example

This example shows how to calculate engagement rate for a social media post with 150 likes, 30 comments, and 20 shares, and 10,000 followers.

python
total_likes = 150
total_comments = 30
total_shares = 20
total_followers = 10000

total_engagements = total_likes + total_comments + total_shares
engagement_rate = (total_engagements / total_followers) * 100
print(f"Engagement Rate: {engagement_rate:.2f}%")
Output
Engagement Rate: 2.00%
⚠️

Common Pitfalls

Common mistakes when calculating engagement rate include:

  • Using total impressions instead of followers without adjusting the formula.
  • Counting only likes and ignoring other interactions like comments and shares.
  • Not converting the result to a percentage by multiplying by 100.
  • Mixing engagement data from different time periods or posts.

Always be clear about which numbers you use and keep the data consistent.

python
wrong_engagement_rate = (likes / impressions)  # Missing multiplication by 100
correct_engagement_rate = (likes / impressions) * 100  # Correct way to get percentage
📊

Quick Reference

TermMeaning
Total EngagementsSum of likes, comments, shares, clicks
Total FollowersNumber of people following your account
Total ImpressionsNumber of times content was displayed
Engagement Rate Formula(Engagements ÷ Followers) × 100 or (Engagements ÷ Impressions) × 100

Key Takeaways

Engagement rate shows how actively your audience interacts with your content.
Use the formula (Engagements ÷ Followers) × 100 to get a percentage.
Include all types of interactions for accurate engagement count.
Be consistent with the data period and source when calculating.
Multiply by 100 to convert the ratio into a percentage.