Calulating Sales Conversion Rate in Excel

joemamma

New Member
Joined
May 19, 2011
Messages
6
I am trying to calculate sales conversion in excel. I have 2,370 clicks and 44 sales. When I try to use this formula to calculate the conversion rate in excel: =C3(this cell is the 2,370clicks)/C8(this cell is the 44 sales)*100 I get some weird result that doesn't look like a real conversion rate (538638.36%). Any insight would be appreciated. Thanks.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Your posting implies that 2,370 clicks generates 44 sales, so you want to find out how many sales a single click generates. Formula for this would be:
Code:
=C8/C7
And as a percetage
Code:
=C8/C7*100
 
Upvote 0
hello and thanks for the reply. i am looking for how many clicks it took to generate sales. I am using the formula you mentioned and I get this weird long percentage. Am I missing something? thank you.
 
Upvote 0
Mistake in formulas - I used C7 instead of C3

If it's how many clicks it takes to generate a single sale, then your formula should be:
Code:
=C3/C8
In other words, 44x = 2,370 so x = 2,370/44

If you want to know how many sales a single click generates, then the formula is the recipriocal of the above, i.e:
Code:
=C8/C3
In other words, 1 click = 44/2,370 sales
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,789
Members
452,942
Latest member
VijayNewtoExcel

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top