How do i do this report?

hello friends
I have a small problem to solve.

I shall be selecting the items that have NOT been purchasing a certain date.
Thus, only articles that have procurement systems PURCHASE.

Example. Date 10-08-01-11-03-09 which items that I did not buy those dates.

how do I do?

If i understand your requirement corectly,

you want to show the list of items which are not purchased in a given period?

Exactly!

something like in Item dataitem

CLE.RESET;
CLE.SETRANGE(“Item No.”,“No.”);
CLE.SETRANGE(“Entry Type”,CLE.“Entry Type”::Purchase);
CLE.SETRANGE(CLE.“Posting Date”,“Date Filter”);
IF NOT ISEMPTY THEN
CurrReport.SKIP;