Reputation: 267
I have a Tablix with a group. For each group, I want the date difference of the column: Time (timestamp) from the prior group.
Pseudo code:
=DateDiff(PriorGroup!Fields!Time,ThisGroup!Fields!Time)
Upvotes: 0
Views: 59
Reputation: 128
Datepart is missing afaik, check this: http://msdn.microsoft.com/es-es/library/ms189794.aspx
Upvotes: 2