Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a .dbf file that contains an empty line (the fields are empty) I would like to filter this line. I used the filter expressions but it dosen't work.
Also i tried with isEmpty() ----
!row1.DATE_NDX.isEmpty() && !row1.TIME_H.isEmpty() && !row1.TIME_M.isEmpty()
But the same problem.
Although I have already checked the box "ignore null as the source data" before tmap
Thank you in advance.
Thanks for your replay. Here is the expression wich resolved my problem
row1.DATE_NDX != null &&
!row1.DATE_NDX.equals("0") &&
row1.TIME_H != null &&
!row1.TIME_H.equals("0") &&
row1.TIME_M != null &&
!row1.TIME_M.equals("0")
Best regards.
Thanks for your replay. Here is the expression wich resolved my problem
row1.DATE_NDX != null &&
!row1.DATE_NDX.equals("0") &&
row1.TIME_H != null &&
!row1.TIME_H.equals("0") &&
row1.TIME_M != null &&
!row1.TIME_M.equals("0")
Best regards.