Nancy,
If you want to suppress records in a transform node you need to set the output to None based on the condition you have identified. The example below based on Mark's above should give you all the information you need.
Step 1
Create a Create Data node with the following content in the Data field
id:int,create:datetime
1,2017-08-01 12:35:41
2,2017-09-01 02:00:00
3,2017-07-01 05:23:21
4,2017-04-17 18:12:21
5,2017-06-21 15:12:21
Step 2
Add a Transform node with the following in ConfigureFields
from datetime import datetime, timedelta
out1 += in1
N = 100
date_N_days_ago = datetime.now() - timedelta(days=N)
And the following in ProcessRecords
out1 += in1
if in1.create < date_N_days_ago:
out1 = None
Note the result will only output those records newer than 100 days.
Regards, Tim.