Calculating Pace of Campaign

auero

New Member
Joined
Apr 6, 2018
Messages
2
Hi All,

I'm finally surrendering for assistance. I've been a long time lurker and this forum has been a an amazing resource :).

I'm trying to calculate the pace of a digital campaign I'm running based on the current date. Below is a sample of what I'm trying to implement. I am not attempting to calculate the current fulfillment which would be ~20%.

This would based on the current date (4/6/18)

ClientStart DateEnd DateImpression GoalServed ImpressionsPace
ABC4/1/184/30/1810,0001,998100%

<tbody>
</tbody>

Is what I'm trying to do possible?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I'm not sure how you are calculating pace, but something like this might help.
This is a linear target curve. If you are using a different calculation method, what is it and could we get some examples of inputs and expected outputs.


Unknown
ABCDEFGHI
1ClientStart DateEnd DateImpression GoalServed ImpressionsPaceintermediate dateintermediate target
2ABC4/1/184/30/1810000199814/6/182000.00
Sheet1
 
Last edited:
Upvote 0
This is very helpful!

I used the "Pace" value as a placeholder of what value it should be displaying based on the current date. Currently, I'm unable to calculate this column.

I'm basically trying to reproduce the "On Schedule Indicator" or OSI from here: http://www.adopsinsider.com/ad-ops-...ery-ad-ops-department-should-start-their-day/

They use =IF(Current Date > End Date, ((Delivery To Date / (End Date – Start Date)) * (End Date – Start Date)) / (Goal), ((Delivery To Date / (Current Date – Start Date)) * (End Date – Start Date)) / (Goal)) however I cannot get it to work. This article is older, which is why it might not be functioning properly.
 
Upvote 0
Try this.

A
BCDEF
1
Current Date04/07/2018
2
3ClientStart DateEnd DateGoalImpressionsPace
4ABC04/01/201804/30/201810,0001,99896.6%

<tbody>
</tbody>

F3, as direct adaptation of the formula posted above:
=IF($B$1>C4,(E4/(C4-B4))*(C4-B4)/D4,(E4/($B$1-B4))*(C4-B4)/D4)

F3, alternative:
=(C4-B4)*E4/D4/IF($B$1>C4,C4-B4,$B$1-B4)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,877
Members
449,056
Latest member
ruhulaminappu

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