W
wgd.roaming
A B C
Row
1 206 S. Harbor Dr. 206 S. Harbor Dr.
=LEFT(A1,FIND(" ",A1)-1) =TRIM(MID(A1,FIND(" ",A1)+1,255))
First equ immediately above is in B1 =LEFT(A1,FIND(" ",A1)-1)
Second is in C1. =TRIM(MID(A1,FIND(" ",A1)+1,255))
A1 is address in column of addresses to be sorted.
Equ starting: =LEFT pulls out the street address number
Equ starting: =TRIM pulls balance.
Problem: In this example, Sort places C1 in rows
starting with letter S.
Would like to put this row in the H section.
The 'S' could be put in the B1 cell, that is: 206 S
Other examples: 1234 N. Washington. The above puts the N. Washington
in the N section, prefer, the W section.
It is those single letters in front of the 'main' street address name
that is messing this up.
Equations above were greatfully supplied about 3 yrs ago by a member
of this group. Back then, the S, for South, for example was not part
of the problem.
Pls, how is this done?
And Thank You, Wayne
Sarasota, FL
Row
1 206 S. Harbor Dr. 206 S. Harbor Dr.
=LEFT(A1,FIND(" ",A1)-1) =TRIM(MID(A1,FIND(" ",A1)+1,255))
First equ immediately above is in B1 =LEFT(A1,FIND(" ",A1)-1)
Second is in C1. =TRIM(MID(A1,FIND(" ",A1)+1,255))
A1 is address in column of addresses to be sorted.
Equ starting: =LEFT pulls out the street address number
Equ starting: =TRIM pulls balance.
Problem: In this example, Sort places C1 in rows
starting with letter S.
Would like to put this row in the H section.
The 'S' could be put in the B1 cell, that is: 206 S
Other examples: 1234 N. Washington. The above puts the N. Washington
in the N section, prefer, the W section.
It is those single letters in front of the 'main' street address name
that is messing this up.
Equations above were greatfully supplied about 3 yrs ago by a member
of this group. Back then, the S, for South, for example was not part
of the problem.
Pls, how is this done?
And Thank You, Wayne
Sarasota, FL