all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* org-mode special table from clock
@ 2014-03-11  9:34 Martin
  2014-03-13  6:35 ` kleinerdrache
  0 siblings, 1 reply; 5+ messages in thread
From: Martin @ 2014-03-11  9:34 UTC (permalink / raw
  To: help-gnu-emacs

Hi there,

I'd like to create a table from my org file appointments:

Table for March 2014
| Day | Kind | Eltern | Familie | km |
|-----+------+--------+---------+----|
|   1 |      |      4 |       3 | 32 |
|   2 |      |        |         |    |
|   3 |    2 |        |         |    |
|   4 |    6 |        |       4 | 32 |
|     |      |        |         |    |

This is where Day is the day of the month, Kind, Eltern, Familie are
something like categories the appt belongs to, maybe not categories but
subcategories.  km is the distance of driving for that job.  The count
below the subcategories are not hours, that are quater hours, so a
number of 4 tells me it is one hour.

At the end of the table I'd like to have it summarized per subcategory
and the km.

But I'm unsure how to store the data for that in my APPT entries:  I
could use properties (but how?)  and I would really like to use the
CLOCK entries for calculating the times.

Thanks for your Ideas,
Martin








^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-mode special table from clock
  2014-03-11  9:34 org-mode special table from clock Martin
@ 2014-03-13  6:35 ` kleinerdrache
  2014-03-13  7:37   ` Bastien
  0 siblings, 1 reply; 5+ messages in thread
From: kleinerdrache @ 2014-03-13  6:35 UTC (permalink / raw
  To: help-gnu-emacs


Arent there any org-mode users here who know a little a bout this issue?

Thanks for every idea you have,
Martin

Martin writes:

> Hi there,
>
> I'd like to create a table from my org file appointments:
>
> Table for March 2014
> | Day | Kind | Eltern | Familie | km |
> |-----+------+--------+---------+----|
> |   1 |      |      4 |       3 | 32 |
> |   2 |      |        |         |    |
> |   3 |    2 |        |         |    |
> |   4 |    6 |        |       4 | 32 |
> |     |      |        |         |    |
>
> This is where Day is the day of the month, Kind, Eltern, Familie are
> something like categories the appt belongs to, maybe not categories but
> subcategories.  km is the distance of driving for that job.  The count
> below the subcategories are not hours, that are quater hours, so a
> number of 4 tells me it is one hour.
>
> At the end of the table I'd like to have it summarized per subcategory
> and the km.
>
> But I'm unsure how to store the data for that in my APPT entries:  I
> could use properties (but how?)  and I would really like to use the
> CLOCK entries for calculating the times.
>
> Thanks for your Ideas,
> Martin





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-mode special table from clock
  2014-03-13  6:35 ` kleinerdrache
@ 2014-03-13  7:37   ` Bastien
  2014-03-13  8:44     ` Martin Kaffanke
  2014-03-13  8:46     ` Martin
  0 siblings, 2 replies; 5+ messages in thread
From: Bastien @ 2014-03-13  7:37 UTC (permalink / raw
  To: kleinerdrache; +Cc: help-gnu-emacs

Hi,

kleinerdrache@gmx.at writes:

> Arent there any org-mode users here who know a little a bout this
> issue?

This is a very specific use-case, I doubt another Org-mode user has
the same.  You will hit more Org users on the orgmode mailing list*,
but again, the use-case is quite specific.

* https://lists.gnu.org/mailman/listinfo/emacs-orgmode

-- 
 Bastien



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-mode special table from clock
  2014-03-13  7:37   ` Bastien
@ 2014-03-13  8:44     ` Martin Kaffanke
  2014-03-13  8:46     ` Martin
  1 sibling, 0 replies; 5+ messages in thread
From: Martin Kaffanke @ 2014-03-13  8:44 UTC (permalink / raw
  To: Bastien; +Cc: kleinerdrache, help-gnu-emacs


Bastien writes:

> Hi,
>
> kleinerdrache@gmx.at writes:
>
>> Arent there any org-mode users here who know a little a bout this
>> issue?
>
> This is a very specific use-case, I doubt another Org-mode user has
> the same.  You will hit more Org users on the orgmode mailing list*,
> but again, the use-case is quite specific.
>
> * https://lists.gnu.org/mailman/listinfo/emacs-orgmode

Thanks I'll try it there.  Even if it is very specific, people could
have some Ideas about that...  In fact there is more to do, but I
thought if I can get that result I will be able to get the other things
by myself.

Thanks,
Martin

-- 
Mag. Martin Kaffanke
http://www.kaffanke.at
+43 650 4514224




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-mode special table from clock
  2014-03-13  7:37   ` Bastien
  2014-03-13  8:44     ` Martin Kaffanke
@ 2014-03-13  8:46     ` Martin
  1 sibling, 0 replies; 5+ messages in thread
From: Martin @ 2014-03-13  8:46 UTC (permalink / raw
  To: Bastien; +Cc: kleinerdrache, help-gnu-emacs


Bastien writes:

> Hi,
>
> kleinerdrache@gmx.at writes:
>
>> Arent there any org-mode users here who know a little a bout this
>> issue?
>
> This is a very specific use-case, I doubt another Org-mode user has
> the same.  You will hit more Org users on the orgmode mailing list*,
> but again, the use-case is quite specific.
>
> * https://lists.gnu.org/mailman/listinfo/emacs-orgmode


Thanks I'll try it there.  Even if it is very specific, people could
have some Ideas about that...  In fact there is more to do, but I
thought if I can get that result I will be able to get the other things
by myself.

Thanks,
Martin



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-03-13  8:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-11  9:34 org-mode special table from clock Martin
2014-03-13  6:35 ` kleinerdrache
2014-03-13  7:37   ` Bastien
2014-03-13  8:44     ` Martin Kaffanke
2014-03-13  8:46     ` Martin

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.