Golom,
My apologies for the lacking clarity in the original post, and I thank you for the response.
Here is a sample of a dozen or so records that contains the relevant field headings:
--------------------------------------------------------------------------------
| OBJECTID_1 |BEG_HSE|END_HSE|PREFIX| NAME | SUFFIX |SUFFIX_DIR| ZIP |
--------------------------------------------------------------------------------
| 1632 | 100 | 498 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 3623 | 100 | 899 | E | ADAMS | BL | | 90011 |
--------------------------------------------------------------------------------
| 31510 | 400 | 899 | E | 29TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 31509 | 400 | 899 | E | 28TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 31508 | 400 | 899 | E | 27TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 31512 | 601 | 699 | E | 30TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 31514 | 2500 | 2699 | | MAPLE | AV | | 90011 |
--------------------------------------------------------------------------------
| 27366 | 2500 | 2999 | | TRINITY | ST | | 90011 |
--------------------------------------------------------------------------------
| 26088 | 2500 | 2999 | | STANFORD | AV | | 90011 |
--------------------------------------------------------------------------------
| 24615 | 2500 | 2999 | S | SAN PEDRO | ST | | 90011 |
--------------------------------------------------------------------------------
| 18650 | 2500 | 2598 | S | MAIN | ST | | 90007 |
--------------------------------------------------------------------------------
| 14063 | 2501 | 2999 | | GRIFFITH | AV | | 90011 |
--------------------------------------------------------------------------------
The output for the
first record would be something like:
--------------------------------------------------------------------------------
| OBJECTID_1 | ID | HSE |PREFIX| NAME | SUFFIX |SUFFIX_DIR| ZIP |
--------------------------------------------------------------------------------
| 1632 | 1 | 100 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 2 | 102 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 3 | 104 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 4 | 106 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 5 | 108 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 6 | 110 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 7 | 112 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 8 | 114 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
| 1632 | 9 | 116 | E | 25TH | ST | | 90011 |
--------------------------------------------------------------------------------
Etc... Up to 498
And the "many more fields" that I mention are additional fields that would remain unchanged and be carried over to the output table.
I hope this clarifies the objective
-Joe