First do you have a field the includes the radius information?
How do I create a way to key in a zip code and specified radius
The wording here is that a record must be in the Zip code and within the
radius. Is that correct? Or do you want any with that Zip and also any
within the radius even if not in the ZIP?
Use the following as Criteria for Zip--
Like [Enter Zip code or Zip start - 031] & "*"
Use the following as Criteria for Radius--
Iif([Enter Radius (Miles)] Is Null, 0, <= [Enter Radius (Miles)] )
If they must meet both criteria then enter the above criteria on the same
line.
Pat J. said:
How do I create a way to key in a zip code and specified radius in order to
have all records in my Access database within that radius come up? I am not
an experienced programmer. Thank you!