Maptitude - http://research.umbc.edu/~roswell/maptitude.html

--------------------------- ListBot Sponsor --------------------------
Get fast, easy info by phone: Call 800-555-TELL.
   News, weather, restaurants... & much more!

http://on.linkexchange.com/?ATID=27&AID=2143
----------------------------------------------------------------------

> One basic way I've thought to do this is to simply use the elevation data
> in the populated place file. Instead of "MOUNT VERNON MD" I'd like it to
> say "Mount Vernon, 90" So far I've got:
> 
> proper(left(name, len(name)-3) + ", " + string(elevation) )
> 
>  I need to figure out if elevation is null. Not sure how to do that.

Don't forget, you can have if-then-else as a part of your
expression.

   proper(left(name, len(name)-3) +
     if (elevation = null) then ""
     else (", " + string(elevation)))

-Kjartan


______________________________________________________________________
To unsubscribe, write to [EMAIL PROTECTED]

Reply via email to