
Jayraj Berde
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 1
Comments
Votes on activity by Jayraj Berde-
Taking oliver's formula, it worked but need small modification. The semicolon is not needed also one of the brackets in the beginning. if (@Number field > 0){ text = '=========== SEPARATOR ======...
-
Hi Rainer, Thank you so very much, I have gone with the minutes scenario and I now have the right result. This will surely help. Thank you so very much once again. Regards, Jayraj
-
Hi Rainer, Yes the Start Date and End Date are two different fields with time Based on the state date time and the end date time I want to calculate how long it took to complete the deliverable ...
-
Hi Rainer, I tried it, the result I am getting is 0. My Start Date is 14/04/2015 4:00 PM My End Date is 14/04/2015 7:00 PM the result is coming as 0. I need it to show 3.0 or 03.00 or 03:...
-
Hi Rainer, var start = moment(@Deliverable Start Date); var end = moment(@Deliverable End Date); var unit = "hours"; end.diff(end,unit)
-
Tried this one earlier too: var start = moment(@Deliverable Start Date); var end = moment(@Deliverable End Date); var unit = "days"; end.diff(end,unit)