Hi !
I have a sequential file and some records contain blanks for a field.
I try to copy the file into another sequential file eliminating these records with blank values.
But when i try to eliminate the rows basing on selection criteria
IF FIELD = ' '
IGNORE
ELSE
MOVE THE INPUT FILE FIELDS TO OUTPUT FILE FIELDS
WRITE OUTPUT FILE
END-IF
the records are not getting filtered.
The records which apparently contain some blank values..seems like are not blanks in fact.Or else they would have been filtered..
How to filter these records?Are the seemingly blank values are low values or high values?
I appreciate any suggestion...
Thanks
I have a sequential file and some records contain blanks for a field.
I try to copy the file into another sequential file eliminating these records with blank values.
But when i try to eliminate the rows basing on selection criteria
IF FIELD = ' '
IGNORE
ELSE
MOVE THE INPUT FILE FIELDS TO OUTPUT FILE FIELDS
WRITE OUTPUT FILE
END-IF
the records are not getting filtered.
The records which apparently contain some blank values..seems like are not blanks in fact.Or else they would have been filtered..
How to filter these records?Are the seemingly blank values are low values or high values?
I appreciate any suggestion...
Thanks