You will need one field for the enrollment date, and another for the date of first submission. Then use DATETIME_DIFF(... "days") to calculate the difference in days between these two dates. Wrap this inside an IF() formula, so that you get an output of "Yes" if the difference is 14 days or less, and "No" if the difference is over 14 days (or there is no submission). So this will be:
IF(DATETIME_DIFF({Submission date}, {Enrollment date})<=14), 'Yes', 'No')
Then just use the number box in your interface to count the number of records with 'Yes' in this field.
You will need one field for the enrollment date, and another for the date of first submission. Then use DATETIME_DIFF(... "days") to calculate the difference in days between these two dates. Wrap this inside an IF() formula, so that you get an output of "Yes" if the difference is 14 days or less, and "No" if the difference is over 14 days (or there is no submission). So this will be:
IF(DATETIME_DIFF({Submission date}, {Enrollment date})<=14), 'Yes', 'No')
Then just use the number box in your interface to count the number of records with 'Yes' in this field.
This worked easy peasy! Thank you so much! lol
This worked easy peasy! Thank you so much! lol
You're welcome 🙂