MapPoint Forums

MapForums

Community of VE/MapPoint Users and Developers




Mapping both Reps and Sales

This is a discussion on Mapping both Reps and Sales within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Is it possible to map customers sales by sized circles and reps by the color of the circle (same circle) ...


Go Back   MapPoint Forums > Map Forums > MapPoint 2006/2009 Discussion

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read



Click here to register

Reply

 

LinkBack (4) Thread Tools Display Modes
  4 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 10-07-2008
Junior Member
White Belt
 
Join Date: Oct 2008
Posts: 2
Mapping both Reps and Sales

Is it possible to map customers sales by sized circles and reps by the color of the circle (same circle) in MapPoint 2006?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 10-16-2008
Senior Member
Green Belt
 
Join Date: Oct 2003
Location: London
Posts: 110
Re: Mapping both Reps and Sales

Yes you can do this in MapPoint 2006, but you have to use some custom programming rather than the Sized Circle option in the Data Mapping Wizard. You can plot circles using AddShape to define a circle with a given location and radius. To represent sales the area of each circle needs to be proportionate to sales so the radius of each circle will be

iRad = Sqr(SalesValue / Pi) * SizeFactor

with the size factor being any constant that makes the circles a sensible size for the map (I usually use trial and error here). You can then block fill each circle in one of 8 colours using

objMap.Shapes.Item(NCircleIndex).Fill.ForeColor = CircleColour

with the required circle colour specified in your data for each rep and assigned a standard vb colour (vbBlack, vbRed, vbGreen, vbYellow, vbBlue, vbMagenta, vbCyan, or vbWhite).

If you need a bit of sample code in excel vba then pm me your e-mail and I’ll send some through.

Rgds
__________________
David
MapPoint Europe Gallery at http://www.broomanalysis.plus.com/gallerylist.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 10-16-2008
Junior Member
White Belt
 
Join Date: Oct 2008
Posts: 2
Re: Mapping both Reps and Sales

David,

Some sample code in Excel VBA would be helpful. I am just learning this so it should be interesting!

Thanks,

Pete
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 10-16-2008
Junior Member
Yellow Belt
 
Join Date: Oct 2007
Posts: 23
Re: Mapping both Reps and Sales

This code snippet may help:
'draw circle
If NoCirc Then
Rd = 0.1
ElseIf Me.cbxShowProportionalCircles.Value Then
Rd = CLng(Sz * (cDelVol.Cells(x, 1).Value / Mx))
ElseIf Me.cbxConstantCircles.Value Then
Rd = Sz
End If
Set CiSh(x) = gobjMap.Shapes.AddShape(geoShapeRadius, mpLocTo(x), Rd, Rd)
CiSh(x).Line.ForeColor = mpLocCol(x)
CiSh(x).Fill.ForeColor = mpLocCol(x)
CiSh(x).Fill.Visible = CircFill
CiSh(x).Line.Weight = LnWgt
CiSh(x).SizeVisible = False

basically, draw circle first at a mappoint location then sets its colour, fill etc. MpLocCol(x) is - in this case - any of 8 different colours.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
mapping, reps, sales


LinkBacks (?)
LinkBack to this Thread: http://www.mapforums.com/mapping-both-reps-sales-8795.html

Posted By For Type Date
Working With Excel and MapPoint - MP2K Magazine This thread Refback 10-12-2008 02:15 AM
Merging Multiple Routes - MapPoint Articles - MP2K Magazine This thread Refback 10-10-2008 10:03 AM
Virtual Earth Launch News Roundup - MP2K Magazine This thread Refback 10-09-2008 08:24 PM
MapPoint Review and Perspective - MapPoint Articles - MP2K Magazine This thread Refback 10-08-2008 07:32 PM

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
mappoint for sales Anonymous MapPoint 2006/2009 Discussion 1 04-26-2005 11:52 AM
Mapping multiple sets of sales data LS MapPoint 2006/2009 Discussion 0 08-18-2004 07:32 PM
How to keep track of 500+ independent reps yourbaglady MapPoint 2006/2009 Discussion 1 07-29-2004 08:56 PM
Territories - Regions - Reps and other great ideas. Anonymous Wish List 0 03-21-2003 01:43 PM
door to door sales - mapping for contact management Neil Kay MapPoint 2006/2009 Discussion 1 10-07-2002 07:07 AM


All times are GMT -5. The time now is 02:58 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
MP2K Magazine
Visitor Map


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54