Sumanta
Sumanta

Reputation: 313

How to add current time in rdl?

How to add Current Time in Rdl report SSRS.

Please any one help me... I am using Date for

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

but for Time only?

Upvotes: 3

Views: 1176

Answers (2)

cdev
cdev

Reputation: 166

If you are trying include the print time and date you can also use the global variable

=Globals.ExecutionTime

Upvotes: 1

vhadalgi
vhadalgi

Reputation: 7189

Try this !

 =Now()

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

Upvotes: 0

Related Questions