With the new rich HTML text area in Spotfire it is possible to get the user location while the user is looking at the analysis in a consumer or business author mode (basically in a browser that supports location) With the geo location you could now create a calculated column which calculates distance between you and your datapoints like stores, wells, clinics, etc Spotfire 6.0 has a new function GreatCircleDistance() that makes this easy. E.g.: DistanceInMiles = 3959 * GreatCircleDistance(${AppGeoLatitude},${AppGeoLongitude},[Latitude],[Longitude]) This is especially great for people in the field and are interested in analysing data around them geographically. To get this feature in the regular browser we will do following series of steps 1) (${AppGeoLatitude} and ${AppGeoLongitude} are two reserved properties that can be used by Ipad app to set the location to. So for the purpose of this exercise we will use the same properties, so go ahead and define them in your analysis. Th...