In your Select Expert, choose 'New' then select your field ({customer_note.create_dte}), open the dropdown to the left, if your field is a date field you will see the option 'Aged0To30Days'.
If it is not a date field, use the formula below to convert it and then use the created formula in place of your field.
You may need to adjust the formula, it is designed to take a YYYYMMDD value and convert it to MM/DD/YYYY.
//{@MakeitADate}
stringvar d := totext({customer_note.create_dte});
Date(val(left(d,4)),val(mid(d,5,2)),val(right(d,2)))