Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I just want to omit this year 1900 in my Date field.
Do it in the scrip while you are loading them
LOAD Date,
otherFields
FROM xyz
Where Year(Date) <> 1900;
Try:
where not Match(Year, '1900');
Thanks,
AS
Hahahaha your solution showed me my mistake, I was doing = 1900 instead of <> 1900
haha no worries
Hi
Try like this
Load * from datasource where Year(Date) <> 1900;