A
Alastair MacFarlane
Jeff
You will need to extract the street field of the table
twice on a query the first one will have show = false and
sort order ascending with the folloing criteria in the
first column:
Right(Trim([Address]),Len(Trim([Address]))-InStr(1,
[Names]," "))
This criteria returns everything to the right of the first
space using the Instr function and then sort in ascending
order.
I hope this helps!
Alastair
You will need to extract the street field of the table
twice on a query the first one will have show = false and
sort order ascending with the folloing criteria in the
first column:
Right(Trim([Address]),Len(Trim([Address]))-InStr(1,
[Names]," "))
This criteria returns everything to the right of the first
space using the Instr function and then sort in ascending
order.
I hope this helps!
Alastair