@Kelly Gabel can you expand a bit around what you want to achieve? It is possible to perform basic arithmetic operations with numerical custom fields, but it's pretty limited.
@Hannah Humbert - Simpla Workflows
Absolutely! I have a Budget Tracker and a Custom Field for Revenue and one for Expenses. I'd love to have a Profit field that automatically calculates the Profit between the two, so = Revenue - Expenses
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kelly Gabel you should be able to use butler to calculate that. Have a look at this article here down the bottom under Custom Field Arithmetic. Let me know if you need any help setting it up 😊
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Hannah Humbert - Simpla Workflows Ok took me a few tweaks to get it right, but that totally worked! The only follow up question I have, so I used a trigger of when Revenue and Expenses are complete, then... but I'd love it to update in real time. I just didn't see an option for keeping it synced, like when those fields are updated vs. complete.
Is that not available, or did I just miss it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this:
when custom field "regex:/.*(Expenses|Revenue).*/" is set, set custom field "Profit" to "{{%Revenue}} - {{%Expenses}}"
Regex is used here to create an OR statement; so you're saying: when either the expenses or revenue fields are set, then update the profit field. "Set" is when the field is either completed or updated, meaning that the profit field will dynamically update.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Hannah Humbert - Simpla Workflows Ok that totally worked and is super cool! Thank you! I feel like you have just opened up a whole new world of automation to me LOL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kelly Gabel yay glad that's working the way you want! 😄 it's pretty cool how much you can do with butler for pretty much free!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Hannah Humbert - Simpla Workflows Exactly!! Although, this does require a subscription to use the Custom Fields...but it's so affordable!
Now, I'm trying to do a roll up of those Profit values per list...so I'm experimenting!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's true, there is some cost involved if you want to use custom fields. Have fun experimenting! 🧪
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great response @Hannah Humbert - Simpla Workflows
@Kelly Gabel To roll up the values per list, you can use a Trello Dashcard that you set at the top of the list:
https://www.atlassian.com/blog/trello/dashcards-powerup
With these, you can do sums and averages, they are really cool...
To keep the dashcard pinned to the top of the list:
when a card is added to list "{listname}", sort the list by "📌" label ascending
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dreamsuite Mike Woah. I've been using Dashcards for a while, but I had never even noticed the Metrics tab!!! This is GAME-CHANGING!! Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.