Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Please find the attached excel file.
I need to filter the null values alone in edit script.(Date Not Filled Records in attached excel file).
Kindly help me on this query.
Regards,
Sivasu
Hi!
You can use where IsNull(Date) = true() to bring all the values that the Date are null;
Or where IsNull(Date) = false() to bring the oposite.
Regards,
Gabriel
Hi!
You can use where IsNull(Date) = true() to bring all the values that the Date are null;
Or where IsNull(Date) = false() to bring the oposite.
Regards,
Gabriel
As above, this will only bring in the rows of data where Date is not null:
LOAD ItemNo,
Month,
Date
FROM
where not IsNull(Date);