Hi,
I'm working against a database that has a location (City, Building, Floor) for each entry, i have created a formula which groups these locations into their parent locations (City)
local stringvar Location;
Location:={Service_Calls.Location};
if location in ["BUILDING-A\2ND-FLOOR",
"BUILDING-A\GROUND-FLOOR"]
then
Location:="City"
else
i pretty much repeat that and finish with:
if location in [""] then
Location:="Location missing"
else
Location:="Other location"
I am not really that interested in having the Location missing field included in the report, but if i leave it out it will display in the report as a blank field (its also a pretty high % so it basically always appear as the first)
What i would like to have it look like would be to have the Top 10 locations, then have the rest grouped into "Other" (Problem here is that but the "Others" from the group sort expert, and the "Other location" from the undefined locations would need to be grouped)
Any advice on this?
I'm working against a database that has a location (City, Building, Floor) for each entry, i have created a formula which groups these locations into their parent locations (City)
local stringvar Location;
Location:={Service_Calls.Location};
if location in ["BUILDING-A\2ND-FLOOR",
"BUILDING-A\GROUND-FLOOR"]
then
Location:="City"
else
i pretty much repeat that and finish with:
if location in [""] then
Location:="Location missing"
else
Location:="Other location"
I am not really that interested in having the Location missing field included in the report, but if i leave it out it will display in the report as a blank field (its also a pretty high % so it basically always appear as the first)
What i would like to have it look like would be to have the Top 10 locations, then have the rest grouped into "Other" (Problem here is that but the "Others" from the group sort expert, and the "Other location" from the undefined locations would need to be grouped)
Any advice on this?