hi i have a time field in string format now i want to sum time at end of my report
i have a string field like this data 05:30 16:10
now i want to sum these clock field
sum two string field
sum two string field
Hello.
Thank you.
Please try to use next expressionronak wrote:hi i have a time field in string format now i want to sum time at end of my report
i have a string field like this data 05:30 16:10
now i want to sum these clock field
Code: Select all
{TimeSpan.Parse(YourField1) + TimeSpan.Parse(YourField2)}
sum two string field
thanks
i dont have a two field i have a data table that contain dynamic field of time and after that in a footer band i want to sum a fields that contain a time
i dont have a two field i have a data table that contain dynamic field of time and after that in a footer band i want to sum a fields that contain a time
sum two string field
Hello.
Thank you.
In this case you can create variable of timespan type and accumulate time in it. Please see attached report.ronak wrote:thanks
i dont have a two field i have a data table that contain dynamic field of time and after that in a footer band i want to sum a fields that contain a time
Thank you.
- Attachments
-
- 1253.TimeSum.zip
- (2.08 KiB) Downloaded 351 times