| |
Data Dynamics Reports Support
Started by cyndichatman at 04-30-2009 2:15 PM. Topic has 3 replies.
 
 
 
|
|
Sort Posts:
|
|
|
|
04-30-2009, 2:15 PM
|
cyndichatman
Joined on 10-30-2003
Posts 116
|
Ability to just print Current Date or Time
|
|
|
|
|
Under the Common Values, there is Current Date and Time. Can I just print one or the other? That is, just the date on the left side of the footer and the time on the right, for example.
|
|
|
|
|
Report
|
|
|
|
05-01-2009, 1:26 AM
|
Jon Smith - DD
Joined on 02-21-2007
Raleigh, NC
Posts 958

|
Re: Ability to just print Current Date or Time
|
|
|
|
|
Once you have selected the Current Date and Time expression for the TextBox (Globals!ExecutionTime or shorthand [&ExecutionTime]), use the Format property to adjust the output format of this DateTime value.
For example, to only display the date, set the Format property to "d" without quotation marks (or use the dropdown to select the desired date or time format). For the time, the format code is "t", without quotation marks.
-Jon
|
|
|
|
|
Report
|
|
|
|
03-10-2010, 7:02 AM
|
mcinp1
Joined on 02-22-2010
Posts 58
|
Re: Ability to just print Current Date or Time
|
|
|
|
|
What is the data dynamic equivalent for the following microsoft report viewer code?:
="Report run on " & globals.executiontime.tostring("f")
The work around I have is to split this textBox code into two separate textBoxes - using the "format" property of the textbox to format the execution time (this is not good as the spacing between the text string and date is not consistent).
Thanks.
|
|
|
|
|
Report
|
|
|
|
03-11-2010, 10:55 AM
|
mcinp1
Joined on 02-22-2010
Posts 58
|
Re: Ability to just print Current Date or Time
|
|
|
|
|
Found it..
="Report run on " & Format(Globals.ExecutionTime, "f")
|
|
|
|
|
Report
|
|
|
|
|
GrapeCity » Product Support » Data Dynamics R... » Ability to just print Current Date or Time
|
|
|
|
|