Hi, I really appreciate if you can help with the following... There are groups of records, each group starts with one record of the header. Need to keep the sequence of all records, and just delete the same headers ... Can recognize the header record by the constant 'Header' in 1thru 6 positions.
Input:
---------
Header A1
data1
data2
data3
header A2
data4
data5
header A2
data6
data7
header A2
data8
header A3
data9
Output:
----------
Header A1
data1
data2
data3
header A2
data4
data5
data6
data7
data8
header A3
data9
Thanking in advance.