R5 - Date calculations (totals, averages, etc.)
R5 - Date calculations (totals, averages, etc.)
(OP)
I want to use DateBegan and DateEnded as my two primary fields. I would like to show the # of days in between the two. Then, have a count of every document, add up the days in between the two dates on each document and do an average. Where should I begin? Is this possible in a view or at least some of this?
Please advise. I really appreciate the assistance.
Please advise. I really appreciate the assistance.
RE: R5 - Date calculations (totals, averages, etc.)
One issue you might run into is performance. It is possible to do all calculations in the view, but besides being tedious, it is also a real speed bump if you have many documents.
I would suggest making a hidden field in the form to count the days between start and end.
In the view, all you need then is to display start, end and day number. The column displaying day number can then be totalled and averaged, and you're done.
I hope this does not come too late,
Pascal.