Hi everyone,
I need to create a view that appears as notice in the first days of the month (Payment reminder)
I created a detail view with the reminder, and put a Show if condition on it:
AND(
TODAY()>=DATE(MONTH(TODAY())&"/"&โ01โ&"/"&YEAR(TODAY())),
TODAY()<=DATE(MONTH(TODAY())&"/"&โ5โ&"/"&YEAR(TODAY()))
)
Options I tried:
Any other ideas on how to make a reminder?
Solved! Go to Solution.
Please try below
Please create an event action on all the form saves. The action type is LINKTOVIEW()
Please make the action app link Target expression as
IF(DAY(TODAY())<=8,LINKTOVIEW(โPayment Reminder Viewโ), LINKTOVIEW(โSome Other View In the Appโ))
Till 8th day of every month the action will navigate to the โPayment Reminder Viewโ on form save events. Thereafter on rest of the days of every month, the action will navigate to some other suitable view that you may wish to have depending on your app configuration.
Please try below
Please create an event action on all the form saves. The action type is LINKTOVIEW()
Please make the action app link Target expression as
IF(DAY(TODAY())<=8,LINKTOVIEW(โPayment Reminder Viewโ), LINKTOVIEW(โSome Other View In the Appโ))
Till 8th day of every month the action will navigate to the โPayment Reminder Viewโ on form save events. Thereafter on rest of the days of every month, the action will navigate to some other suitable view that you may wish to have depending on your app configuration.
Excellent!! Thank you so much!!
User | Count |
---|---|
15 | |
11 | |
10 | |
8 | |
3 |