The best / easiest thing to do would be a Couple of SUMIFS and have a condition for <0 / >0 to show outgoing vs incoming.
If you have a condition for for Category I guess you have Sum If or similar, but if you move to sumifs you can add additional conditions
Anarchist
(Press ‘Help’ search ‘Contact us’ or email help@monzo.com or call 0800 802 1281)
123
If you mean you want a list of positive transactions and a list of negative transactions for a category, then you can do this with a query. I’m not at a computer at the moment, but the basic syntax is;
=Query([Range] , “Select * where A > 0 and B = ‘General’ )
Range is where the data is
A is the column with the amounts in.
B is the column with the categories.
I did ask about that before, but unfortunately it seems to be a deliberate “limitation” right now
In that one specific case, and for emptying out the Notes field, I have been changing the raw data in the spreadsheet, as at least I know that it will either not be changed or changed to the same value in future
1 Like
Anarchist
(Press ‘Help’ search ‘Contact us’ or email help@monzo.com or call 0800 802 1281)
125
I’m making a bit of a thing.
Basically, I want to be able to filter transactions by various criteria without using the column filter options. I’m hoping to be able to use dropdown boxes for categories, etc. But I started just with dates, if anyone is interested. I’ve written a Query to filter the transactions between two dates. It looks like this;
=query(AllTransactions!$A:$F,"Select * WHERE A >= DATE '" & TEXT($A$4,"YYYY-MM-DD") & "' AND A <= DATE '" & TEXT($B$4,"YYYY-MM-DD") & "'")
‘AllTransactions’ is where I keep my merged data
A4 and B4 are the date input cells
It looks really complex because of the way sheets deals with dates and the query just returns all the data between those dates at the moment. It obviously needs to be made pretty, but I hope to be able to build it further to filter by category next.
Edit; Bit of an update. The query now filters for a dropdown list of categories.
=query(AllTransactions!$A:$F,"Select * WHERE C Contains '"&B10&"' AND A >= DATE '" & TEXT($A$4,"YYYY-MM-DD") & "' AND A <= DATE '" & TEXT($B$4,"YYYY-MM-DD") & "'")
Sorry chaps - I have the monthly total working for the last month, how do I alter the formula to get all months in the transaction download? So, that would be all months so far reported and future proofed for the rest of year. R-
Dang. I couldn’t have read up on it properly. No good to me then. At least I asked before spending too much time getting it all working. Thanks - and dang again. R-
Well, I am still stuck - but to be honest without all transactions from all linked accounts its not as useful as I wanted so I will cancel it ASAP. I have emailed them [as there is no chat option and phoning times out?] as I think the product is being misrepresented. R-
Thanks - I looked aorund the app for hours and couldn’t find that. All done. Now have to see if I need to order a replacement Monzo Standard card. app says I do - an email says I dont. Confudulating isn’t it R-
Just a quick note to round this off. On cancellation there was an immediate refund of £5 - and there was no need to get a replacement card, just used it. All good. R-
Have been trying to implement your formula but it’s just returning error.
I have copied it exactly and only replaced Entertainment with Bills, so unsure why it is working, any ideas?
Thanks so much!
I think this forum automatically reformats ‘these’ so that they no longer work properly when you copy paste back into sheets. Try going through the formula manually replacing all of the ’ .
Yep it’s definitely the formatting of the apostrophes. Just retype all of them out and it will work.
In your example, replace the “Bills” bit with $A3 (no ") and it should work. It’s effectively telling the equation to do the sum if Column G is exactly the same as Cell A3