Forum Discussion
Izzy90
Sep 30, 2021Copper Contributor
find cost per 1000 impressions over first 10 days
I have column, with dates on D2:D161, costs on E2:E161, Impressions on F2:F161 What would be the CPM (cost per 1000 impressions) over the first 10 days?
- Oct 01, 2021
See the attached workbook.
HansVogelaar
Oct 01, 2021MVP
See the attached workbook.
Izzy90
Oct 01, 2021Copper Contributor
HansVogelaar I am trying to see a cumulative result of cost per 1000 impressions over first 10 days.
How do I do that?
Thank you for the excel file though 🙂
- HansVogelaarOct 01, 2021MVP
Could you attach a sample workbook with dummy data representative of the data you work with?
- Izzy90Oct 01, 2021Copper Contributor
- HansVogelaarOct 01, 2021MVP
I see that the dates aren't sorted in ascending order.
Wouldn't it be better to sort them? That looks more logical, and you can then use
=AVERAGE(C2:C11/B2:B11)*1000
But if the data aren't sorted, you can use
=AVERAGE(IF(A2:A16<=SMALL(A2:A16,10),C2:C16/B2:B16,""))*1000
Both have to be confirmed with Ctrl+Shift+Enter.