I like to subtract dates in a calculated column (EndTime - StartTime)
I need this in a calculated column so I can add the total
Thanks in advance.
Roger
subtract dates
subtract dates
You can use any methods and properties from standard DateTime class. For example:
Code: Select all
EndTime.Subtract(StartTime)
subtract dates
Thanks for the reply.
I'll try it.
Roger
I'll try it.
Roger