Re: Struggling to get my first importer working (using Red's Importers)

2024-09-21 Thread Joshua Cabrera
Yes, it does! Turns out I wasn't paying close enough attention to the terminal type. Using the VS Code Beancount extension, I have it set to start fava when opening my beancount file. That automated process uses a PowerShell terminal, not Command Prompt, and I was just using that window, instea

Re: Beanquery - Select expenses tied to a specific asset

2024-09-21 Thread Chary Chary
I think this is what you are looking for SELECT account, SUM(position) WHERE account = "Assets:Checking" OR "Assets:Checking" in other_accounts the trick is the other_accounts thing The human explanation is that it shows a sum of changes to all accounts by transactions, which involve Assets:Che

Re: Are there any plans to migrate beangrow and fava to v3?

2024-09-21 Thread c79m...@gmail.com
I tried using using beanquery with Fava, and wasn't able to get anywhere about 4 months ago. I'm not much of a programmer, but Fava appears to be pretty tightly coupled to V2's beanquery interface, and would need some decent reworking to use the seperated out beanquery of V3. Unfortunately,

Re: Beanquery - Select expenses tied to a specific asset

2024-09-21 Thread Oscar & Alejandra
That's it! Thank you so much! The 'other_accounts' was exactly what I was needing. September 21, 2024 at 12:14 PM, "Chary Chary" mailto:chary...@gmail.com?to=%22Chary%20Chary%22%20%3Cchary314%40gmail.com%3E > wrote: > > I think this is what you are looking for > SELECT account, SUM(positio

Re: Are there any plans to migrate beangrow and fava to v3?

2024-09-21 Thread Mariano Draghi
yagebu seems to be working as of last week on a version of Fava that would be compatible with both Beancount v2 and v3, using the standalone beanquery package. * meta-issue tracking the work: https://github.com/beancount/fava/issues/1860 * the (currently WIP) PR: https://github.com/beancount/fa

Re: Struggling to get my first importer working (using Red's Importers)

2024-09-21 Thread Joshua Cabrera
Thank you so much! Everything seems to be working now, so I just have to tweak my.import and catch up on recording in my ledger. Once I'm caught up, I'll come back to automating the download and extract workflow. Regarding the encoding issue, my first guess was it's because I'm doing all this

Re: Struggling to get my first importer working (using Red's Importers)

2024-09-21 Thread Red S
You’re welcome, and glad to hear! Found this if it helps. ​ On Saturday, September 21, 2024 at 8:06:20 AM UTC-7 Joshua Cabrera wrote: > Thank you so much! Everythi