Hi all,
Currently I have already created a report for my data. However, I am trying to only send out the report one day after the new additional data has been added. Appreciate some help on this
God Bless
Janan
Workflow rules only trigger at the time the row change arrives at the server (i.e., when the app syncs); there is no way to schedule a workflow rule at all, let alone one day after a change occurs. The closest you can get is a scheduled report that somehow identifies the changes that happened within the last day that should trigger it and responds to them.
Dear Steve,
Thank you. However, I have already done a scheduled report. However, If there is no changes, I do not want it to be send out. I do not want to use a workflow trigger as there are multiple updates on the data everyday. Thus, wanting only one report to be sent out. In the data, I have a column for date input. Would like the scheduled report to be triggered when a date input is of the date is Today()-1. Just not too sure how to go about that.
God Bless
Janan
The report would target the entire table:

Then set a Condition that is TRUE only when there is at least one row with a suitable Date column value:
The Condition expression might be something like this:
ISNOTBLANK(
FILTER(
"table",
([Date] = (TODAY() - 1))
)
)
(replacing table with the name of the table)
Your report template would then use a <<Start>> tag to target only those rows:
<<Start: FILTER("table", ([Date] = (TODAY() - 1)))>>
(again with the table replacement)
Steve:
auto> ISNOTBLANK(> FILTER(> "table",> ([Date] = (TODAY() - 1))> )> )> >
Thank you so much. This solved my problem