Hi .... What can i do if i want to get the sum answer by time format instead of general number....
For example, 700 min is the time , i don't want it to show as 11.67 and want it to be 11 hours and 40 mins
Time format
-
- Posts: 2
- Joined: Mon Aug 17, 2015 11:47 am
Re: Time format
Hello.
You could set the Text Format to the necessary value or use ToString("hh:mm") method.
Could you specify where you have the time and what is the format of the source?
Thank you.
You could set the Text Format to the necessary value or use ToString("hh:mm") method.
Could you specify where you have the time and what is the format of the source?
Thank you.
-
- Posts: 2
- Joined: Mon Aug 17, 2015 11:47 am
Re: Time format
{Sum(GroupHeader3,MasterData.DiffMinutes)}
the format of source
the format of source
Re: Time format
Hello.
Could you specify what is the type of the MasterData.DiffMinutes column?
If the column has right type, you could use next expression:
Thank you.
Could you specify what is the type of the MasterData.DiffMinutes column?
If the column has right type, you could use next expression:
Code: Select all
{Sum(GroupHeader3,MasterData.DiffMinutes).ToString("hh:mm")}