<% @LANGUAGE ="VBSCRIPT" %> <% Option Explicit %> <% HitCount %> Marketing by The Dashboard Light Home Read Excerpt Order About the Author

Marketing by The Dashboard Light

 
Excerpt from Marketing by the Dashboard Light

What Is a Marketing Dashboard? The New Way to Capture, Shape, and Improve Marketing Effectiveness and Efficiency

The dashboard of a car, a plane, even a video game gives you a lot of crucial information. How fast are you going? How far have you traveled? How much fuel do you have left? How hot is the engine?

A marketing dashboard provides you with the same up-to-the-minute information necessary to run your operation -- sales vs. forecast, distribution channel effectiveness, brand equity evolution, human capital development -- whatever is relevant to the role of marketing in your organization. An effective dashboard might focus on only three critical metrics or show the top 20. It could appear in your inbox monthly in the form of a nice color printout or be beamed over the company intranet first thing each morning.

The most useful marketing dashboard allows you to measure and manage your marketing effectiveness in ways you probably haven't tried. It will verify all the things that are working well. It will also shine a bright light on systems, projects, staff, and processes with the opportunity to improve. It will change the way you gather information while helping you to simplify the complex world of moving measurement targets. Most of all, an effective dashboard will focus your thinking and significantly improve the way you communicate it to others.

And yes, it just might reveal for all to see where the marketing investments are paying off and where they aren't. That's the tough part.

From what we see in many organizations, marketing — unlike IT, sales, or manufacturing -- isn't always given the same credit by top management for having a direct impact on the organization's bottom line. Certainly, marketing creates ideas and initiatives that drive growth. Though most CEOs would agree that marketing plays a role in the company's success, they just don't know how to quantify that role. This is what makes it so difficult to get incremental funding for marketing programs or even to defend existing funding when dollars get tight.

This is something a marketing dashboard can help change.

Many of today's marketing organizations have made significant strides in the development of sophisticated analytical approaches to improve marketing measurement. Ph.D. statisticians are now common in most large marketing departments, as are research departments, media-mix models, and models for assessing the return from a proposed initiative.

But what are they really measuring?

Figure 1.1 shows the three most common measurement “pathways” marketers are pursuing today.

Next page


© 2008 MarketingNPV LLC
<% ' -------------- Simple ASP Counter ------------------- Sub HitCount Dim sPath, filesys, count, getValue, update, twohrs sPath = Request.ServerVariables("Path_Translated") sPath = Left(sPath,InStrRev(sPath,"\")) & "../data/counter.txt" 'Response.Write sPath 'Response.End Set filesys = CreateObject("Scripting.FileSystemObject") Set getValue = filesys.OpenTextFile(sPath,1,0) ' get the current value count = getValue.ReadLine If Request.Cookies("website_name")("recentvisitor") <> "yes" Then ' increment by 1 before displaying, 'cos they're a newbie count = Int(count) + 1 End If ' close file getValue.Close If Request.Cookies("website_name")("recentvisitor") <> "yes" Then ' only update the value in the text file if they're a newbie ' overwrite old text file with new one Set update = filesys.CreateTextFile(sPath) ' put new value in text file update.WriteLine(count) update.Close ' give them a cookie to make sure it doesn't count them more than once Response.Cookies("website_name")("recentvisitor") = "yes" ' make it expire in 2 hours' time twohrs = DateAdd("h", 2, Now) Response.Cookies("website_name").Expires = twohrs End If ' ----------------- End ASP Counter --------------------------------------- End Sub %>