How to add current time in rdl?

How to add the current time to the RDS SSRS report.

Please help me ... I am using Date for

   =DateAdd("m", -1, Now) 

but only for time?

+3
source share
2 answers

If you are trying to include the time and date of printing, you can also use a global variable

=Globals.ExecutionTime
+1
source

Try it!

 =Now()

 =DATEADD("m", -1, now())
0
source

All Articles