Thanks.
Will try that.
So far this is what I have:
I sort of have something with:
Code:
IIf(InStr(1,[NEW_ADDRESS1],"Apt")>0,Mid$([NEW_ADDRESS1],InStr(1,[NEW_ADDRESS1],"Apt")-1),[NEW_ADDRESS1])
But the not sure how to also add:
"Unit", "Lot", "#"
And to not display the address:
Add1 |
SubUnit |
11 Nathan Pratt Dr Unit 3 |
11 NATHAN PRATT DR UNIT 3 |
250 Blue Ridge Rd |
250 BLUE RIDGE RD |
580 Washington St Unit 401 |
580 WASHINGTON ST UNIT 401 |
47 Evergreen Rd |
47 EVERGREEN RD |
26 Avon St Apt 1 |
APT 1 |
175 Centre St # 403 |
175 CENTRE ST # 403 |
3529 Surfwood Rd |
3529 SURFWOOD RD |
36 College Ave Apt 44 |
APT 44
|
61 Roxana St |
61 ROXANA ST |
9 Remsen Ave |
9 REMSEN AVE |
12 Benton St Apt 1 |
APT 1
|
Then I can do another column to extract the numeric part after Apt, Unit, Lot, #
(though if the # can be converted to say Unit, that would be ideal)