I have made progress on this and have a few questions (so what's new).
I have created two of the three log files as follows:
- Bank account closing balance log.
The idea is here is to be able to press a hot key trigger and get the most recent month's closing balances to make it easier to reconcile rather than sifting through multiple files to otherwise get / write down the balances. The window looks like this:
+++++++++++++++++++++++
- Moved files log:
The idea here is to be able to press a hotkey and access all the files that have been moved to find a one or more files, This may -- not so sure, it was more of a learning exercise -- be useful in finding a file that was incorrectly processed (i.e., moved to the wrong folder), not processed (i.e., does not appear in the list), etc. The prompt looks like this:
The log will contain a running history so I could search for all Spotify bills and should a particular month be missing (i.e., 202603XX) then the all was not possibly not paid, processed, etc.
The macro that processed this log looks like this:
View Moved Files.kmmacros (18.2 KB)
The three questions I have about this are:
-
I noticed that the Prompt With List Action which assigns the selections to Local_SelectedFilePath results in Local_MovedFileLog having no value after that action. Is that normal, what is the reason for this?
-
I noticed (and confirmed in the Wiki) that pressing escape results on a failure notification and the macro ending. I worked around this (as the Wiki provided no other solution) by disabling Failure Aborts the macro. Is this the best / common method for so doing?
-
Wondering what other uses there is for this by those more experienced than me?
+++++++++++++++++++++++
- Processed logs.
I am next going to build a processed file log.
The concept here is that as items are downloaded and moved i) I may / may not open them when they are downloaded and moved as I am focused one something else and ii) I don't want to forget to pay an invoice.
The idea is that when the last action in the macro prompts the user to open the downloaded the file and the user responds with the CANCEL button or NO that the file is added to the process log.
The user will then be able to use a hot key trigger (or I could activate at the end of the day) to see a list of downloaded files that have not been opened / processed. The Prompt With List action would provide the user teh options of deleting a file from the log or opening the file. Whether a file is opened through the Prompt With List action (or otherwise) it would be removed from teh list.
Wondering what people thoughts are regarding the usefulness of this.
+++++++++++++++++++++++
Look forward to your response and thanks for reading this!