Using Additional Dates for Calculations
Checking the Month
month(to_date(agg(transaction.labels).getLabelValue('custom_date'))) == 'April'Checking the Day of the Week
day(to_date(agg(transaction.labels).getLabelValue('custom_date'))) in ["Saturday","Sunday"]Checking the Time of Day
is_time_between(to_date(agg(transaction.labels).getLabelValue('custom_date')),to_date('06:00'),to_date('09:00'))Last updated
Was this helpful?

