Hi Everyone,
I'm importing data from a MS-DOS era database txt file export. There are 17000 records with 15 possible data fields each. However, if a field wasn't populated in the DOS database, the export doesn't include a space for it in the export, which means the order of the fields vary, and therefore can't be transposed. One record might have A, B, C, D fields, and the next one has A, C, D (I.e., B is missing)
Does anyone know how I could accomplish something like "If a cell with the value A is not followed by a cell with the value B, insert blank row"?
Here is an example of the first four lines from two records:
TN A20 0015
CN A20 0015
TI World Congress fall celebration, 1991
G [videorecording]
and
TN A21 0001.2
CN A21 0001; AC2 177
ST Assembly
TI New Year's Continental Assembly
In this example, the first record is missing a field called "ST", which should be after CN. I'd like run a command that says "If CN is not followed by ST, insert blank row"
THANK YOU!
I'm importing data from a MS-DOS era database txt file export. There are 17000 records with 15 possible data fields each. However, if a field wasn't populated in the DOS database, the export doesn't include a space for it in the export, which means the order of the fields vary, and therefore can't be transposed. One record might have A, B, C, D fields, and the next one has A, C, D (I.e., B is missing)
Does anyone know how I could accomplish something like "If a cell with the value A is not followed by a cell with the value B, insert blank row"?
Here is an example of the first four lines from two records:
TN A20 0015
CN A20 0015
TI World Congress fall celebration, 1991
G [videorecording]
and
TN A21 0001.2
CN A21 0001; AC2 177
ST Assembly
TI New Year's Continental Assembly
In this example, the first record is missing a field called "ST", which should be after CN. I'd like run a command that says "If CN is not followed by ST, insert blank row"
THANK YOU!