Hi Hayleigh,
Suppose your properties boundary table is called:
'Property_Boundaries' (with a column 'PropertyID' identifying the
properties) and you adress table is called 'Adresses'. The following
query should give you a list with the number of adresses by property,
with the properties with the highest number of adresses appearing at
the top of the list:
Select Property_Bounadries.PropertyID, Count(*) from
Property_Bounadries, Addresses where Property_Bounadries.Obj Contains
Addresses.Obj group by Property_Bounadries.PropertyID order by 2 desc
into Number_OF_Adresses_By_Property
After replacing the table names and the column name with the relevant
values, you can execute this query via the MapBasic window, or you can
create the query yourself by using the Query > SQL Select dialog.
HTH,
Egge-Jan