Windows 7, Emacs 25.1
I has myfile.org
It has many headlines in different state: TODO, POSTPONED, IN PROGRESS, DONE. E.g.:
* Headline1
** IN PROGRESS Task#1_1
** DONE Task#1_2
** TODO Task1_3
* Headline2
** DONE Task#2_1
** POSTPONED Task#2_2
** TODO Task#2_3
I want to archive headlines only in DONE state. The result in archive file (to.do.org_archive) must be somethink like this:
to.do.org_archive
* Headline1
** DONE Task#1_2
* Headline2
** DONE Task#2_1
Is this a possible? Thanks.