Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
You can simply create a days difference between OrderDate and Today, and use simple condition to identify the products which should be stopped.
For example.
Data:
Load *,Today() - OrderDate as Diff from XYZ;
Final:
Load *,If(Diff>365,'Discontinue','Continue') as Flag Resident Data;
Regards,
Kaushik Solanki