I have a form to create a new record entry. In this form the user will enter a bank’s Transaction Date into a control called CR_Transaction_Date.
I have a hidden control called CR_SLA_Date that I want to calculate a value for a SLA Date derived from the CR_Transaction_Date plus 30 days.
Normally I would calculate the SLA date after the record is created and the CR_Transaction_Date was put into the DB but I need the date for specific reports to run quickly.
I tried several things but can’t seem to get it to work.
In the CR_SLA_Date Default Value
=CDate(Date()+30)
Gives me 30 days from the date the user creates the record.
=CDate(Date(Me. CR_Transaction_Date)+30)
Gives me nothing in the CR_SLA_Date field.
Can anyone offer suggestions?
Thanks,
James

I have a hidden control called CR_SLA_Date that I want to calculate a value for a SLA Date derived from the CR_Transaction_Date plus 30 days.
Normally I would calculate the SLA date after the record is created and the CR_Transaction_Date was put into the DB but I need the date for specific reports to run quickly.
I tried several things but can’t seem to get it to work.
In the CR_SLA_Date Default Value
=CDate(Date()+30)
Gives me 30 days from the date the user creates the record.
=CDate(Date(Me. CR_Transaction_Date)+30)
Gives me nothing in the CR_SLA_Date field.
Can anyone offer suggestions?
Thanks,
James
