Let’s say 56 users registered on the site last week, and 12 users registered this week. How do I get the percentage difference?
I tried this, but the values are incorrect
var last_week_users = 56
var this_week_users = 12
var result = this_week_users * 100 / last_week_users