Forum Discussion

BrianNeedsHelp's avatar
BrianNeedsHelp
Resolver I
1 year ago
Solved

Summarize Data for Map Visualization

Our sales territories, are basically a hierarchy of Regions, Subregions, Locations.    So the table has all of the Lats and Longs for each location.  I'm wanting to sum up the sales by each Subregion but not sum up the Lats and Longs.  But keep a random Lat and Long in the subregion, so that the subregions generate on a map.  Is there a DAX code to achieve? 

   E.g.  

Need this:

Sub Region     Location   Latitude   Longitude   Sales   
SEa29.9645-90.088520
SEb30.00944-90.163430
NEc30.21084-90.921930
Wd32.73877-89.531340
We33.06219-89.584950

To Become like this:

Sub Region     Location   Latitude   Longitude   Sales   
SE 29.9645-90.088550
NE 30.21084-90.921930
W 33.06219-89.584990
  • Hi,

    You do not need to create second table.  Just select the aggregate function as Average for Lat and Long

     

4 Replies

  • Hi,

    You do not need to create second table.  Just select the aggregate function as Average for Lat and Long

     

    • BrianNeedsHelp's avatar
      BrianNeedsHelp
      Resolver I

      This shows all the locations.  I'm trying to display only the subregions.  When I put Subregion in the Location and change the Lat and Long to Average, it still shows all the locations.  

      • BrianNeedsHelp's avatar
        BrianNeedsHelp
        Resolver I

        Nevermind.  It's because I had Location in the tool tip.  Wow that was much easier than I thought.  Thank you!