Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
Now I get it. Thank you for explanation. On Sat, Oct 14, 2023 at 9:39 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > > But I'm talking about: > > (":mean" . org-columns--summary-mean-time) > > not ("@mean" . org-columns--summary-mean-age). > > > > So this is the right function

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Ihor Radchenko
Sławomir Grochowski writes: > But I'm talking about: > (":mean" . org-columns--summary-mean-time) > not ("@mean" . org-columns--summary-mean-age). > > So this is the right function (":mean" . org-columns--summary-mean-time)? > Or do I need to write a new one? I think you still need to write a

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
But I'm talking about: (":mean" . org-columns--summary-mean-time) not ("@mean" . org-columns--summary-mean-age). So this is the right function (":mean" . org-columns--summary-mean-time)? Or do I need to write a new one? On Sat, Oct 14, 2023 at 9:19 PM Ihor Radchenko wrote: > Sławomir

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Ihor Radchenko
Sławomir Grochowski writes: > In ex. I want to have an average time when I go to bed. > So on Monday I went to bed at 22:00 and on Tuesday at 02:00. > So the average time would be midnight 00:00. > But it returns 12:00 which is noon. As I said, it is because it does not calculate an average

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
In ex. I want to have an average time when I go to bed. So on Monday I went to bed at 22:00 and on Tuesday at 02:00. So the average time would be midnight 00:00. But it returns 12:00 which is noon. On Sat, Oct 14, 2023 at 8:50 PM Ihor Radchenko wrote: > Sławomir Grochowski writes: > > >

Re: org-columns--summary-mean-time [BUG]

2023-10-14 Thread Ihor Radchenko
Sławomir Grochowski writes: > I'm not sure if this is a bug or I need to change something? > > (org-columns--summary-mean-time '("17:00" "18:00") nil) ;=> "17:30" ; ok > (org-columns--summary-mean-time '("22:00" "02:00") nil) ;=> "12:00" ; > should be 00:00 > (org-columns--summary-mean-time

org-columns--summary-mean-time [BUG]

2023-10-14 Thread Sławomir Grochowski
Dear All, I'm not sure if this is a bug or I need to change something? (org-columns--summary-mean-time '("17:00" "18:00") nil) ;=> "17:30" ; ok (org-columns--summary-mean-time '("22:00" "02:00") nil) ;=> "12:00" ; should be 00:00 (org-columns--summary-mean-time '("22:00" "03:00") nil) ;=>