It may be a simple operation, but I have no idea
.
I would like to know how to automatically display this week’s appointments in a repeating group.
The data contains the name of the appointment and the date of the appointment.
Assuming the datasource for your RG is a database search, then you just need to add some constraints on the search to return only Appointments that are scheduled within the current week.
You can use :rounded down to week for this.
So try the following 2 constraints:
Appointment Date ≥ Current date/time: rounded down to Week
Appointment Date < Current date/time: rounded down to Week: Plus (Days) 7
Thank you @ adamhholmes.
I tried to follow your instructions and it was solved.Appreciate your help.