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 |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |