Formula to adjust for variable quantity

gflory

New Member
Joined
May 26, 2006
Messages
18
I would like help in creating the formula that would weigh a third number: Each month, I collect the following data. I would like to be able to create a weighed conversion rate:
..........Showings......Contracts.........Listings......Conversion Rate
Jan........4517..............135...............678..............3%
Feb.......4324...............127...............709..............3%
Mar.......6045...............208...............740..............3.5%

How do I adjust(weigh) the conversion rate with the change in number of listings?

Thanks
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
So, are you saying we can ignore the "Showings" and "Contracts" data, and just calculate a weighted conversion rate, using the "Listings" as a weighting factor ?

If yes, then maybe this
Code:
=SUMPRODUCT(D2:D4,E2:E4)/SUM(D2:D4)
returns a value of 3.174%.

This assumes . . .
Listings are in the range D2:D4
Conversion Rate is in the range E2:E4
The Conversion rates are EXACTLY 3%, 3%, and 3.5% - I suspect that really they are not.
 
Upvote 0
Maybe a solution would be to determine conversion rate per 100 showings.

The showings and contracts are the primary numbers; the listings is added in an attempt to weigh the results of contracts/showings.

Thanks for looking at this problem,
 
Upvote 0

Forum statistics

Threads
1,224,578
Messages
6,179,654
Members
452,934
Latest member
mm1t1

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