In addition to the data, there are a few more elements that should be in the report. “Report Generation Date” is among them. This will inform others when the report that was shared is being prepared.
Take a text box in the report’s data section and enter the following expression.
=”Report Generated Date: ” & FORMAT(Cdate(today), “dd-MM-yyyy”)
You can use “MM-dd-yyyy” or “yyyy-MM-dd” instead of “dd-MM-yyyy” if you want a different format.
Hope this helps.