CptCrusty1
Programmer
I have two address fields "BNA" (means Borrower New Address) and MADDR1 (mailing Addr). The BNA is returned by my vendor and I need to compare it to the MADDR1 field. If the address is different, they've given me good info and can bill me. If not, no charge. My problem is I can only get so far with basic IF's, etc. i.e.
IF BNA <> MADDR1, then bill me.
IF BNA = MADDR1, no charge.
However, if I send them:
101 Smith Street, and they return
101 Smith St., those arguments are not going to pick that up. Any ideas on how to eliminate that as a problem? I have to search through about 200000 records... so I'm not doing it by hand.
I've considered using instr, or StrComp, but I'm just not sure how I can implement it.
Thanks
Crusty
I live to work and I work to live.
IF BNA <> MADDR1, then bill me.
IF BNA = MADDR1, no charge.
However, if I send them:
101 Smith Street, and they return
101 Smith St., those arguments are not going to pick that up. Any ideas on how to eliminate that as a problem? I have to search through about 200000 records... so I'm not doing it by hand.
I've considered using instr, or StrComp, but I'm just not sure how I can implement it.
Thanks
Crusty
I live to work and I work to live.