[AccessD] Numbers within a street

Stuart McLachlan stuart at lexacorp.com.pg
Wed Sep 14 19:10:36 CDT 2011


To deal with things like "234A Abnormal St" and "2333-1017 Queen St", you need three 
fields:

Building Number
Apartment/Dwelling Identifier
Street Name

-- 
Stuart

On 14 Sep 2011 at 19:19, Arthur Fuller wrote:

> Thanks for this, Asger. But ultimately, it would be better to teach
> the volunteers that there is a separate textbox for the Number and
> another for the street.
> 
> And thinking down the road, it frequently happens that the fuling
> party gets to re-draw the electoral map, moving this and that street
> into a block guaranteed to win a legislative seat, and shunting the
> others into NowwhereLand. All parties in Canada are guilty of this bad
> behaviour, so it's impossible to side with any given one and claim the
> high road. They all do it.
> 
> The ideal campaign-management software would easily accommodate this
> sad reality, and make it simple to transfer streets x, y and z, and
> perhaps street numbers t, u and v, to another riding, to correspond to
> the latest dicta from the governing party. This would be way slick,
> and might even prove a deterrent to mitigate such shenanigans: you
> re-draw the boundaries and presto, one click and we've dealt with it!
> 
> There's a whole other ball of wax that we don't experience in Canada.
> I believe the American term for it is "pork barrel". It means that a
> bunch of stuff gets tacked on to an otherwise virgin bill.
> 
> I'm not a USA citizen or dweller but I do read the news, and from what
> I have gleaned, the above is an accurate description of what happens.
> 
> I find it hilarious that about 90% of the populace in USA is against
> open immigration policies, while virtually all of same are either
> first or second-generation immigrants. There is a word for this kind
> of behavior, and I don't mean "hypocrite", which is emotionally
> loaded. There is another word for this behavior, and I challenge you
> to name it.
> 
> Arthur
> 
> On Wed, Sep 14, 2011 at 6:53 PM, Asger Blond <ab-mi at post3.tele.dk>
> wrote:
> 
> > But VAL wouldn't catch the street number 234A.
> > A function like this might do the work:
> >
> > Function StreetNumber(Address As String) As String
> >    Dim strStreetNumber AS String
> >    strStreetNumber = Left(Address, InStr(Address, " "))
> >    If InStr(Address, "-") > 0 Then
> >        strStreetNumber = Left(Address, InStr(Address, "-") - 1)
> >    End If
> >    StreetNumber = strStreetNumber
> > End Function
> >
> > Asger
> >
> -- 
> AccessD mailing list
> AccessD at databaseadvisors.com
> http://databaseadvisors.com/mailman/listinfo/accessd
> Website: http://www.databaseadvisors.com
> 






More information about the AccessD mailing list