Trying to figure out how to run a report to see how many new cards are added per day/week/month etc. per board. especially helpful if i can generate a list of cards added on a specific day, time range?
Hi @Nick Traynor ,
you can give a try to Crmble Power-Up. It gives some Dashboard graphics that could be useful for you maybe.
Cheers
Toni
Trello variables has the following info:
1.25
).1.67
).100.5
).In my post "A Powerful Combination"
I illustrated how you can use the report variable with a http request to an end-point to do more processing on the data. You can use a pattern [{cardname}]({cardlink}) and {cardcreationdate} and send this to a spreadsheet or provide additional start/end date and time and have the end-point return some output to you like an email.
It helps if you have the capabilities to support the endpoint including programs to implement your specific requirements.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create this
every day at 5:00 am, create a report in variable "card_age" with all cards with custom field "Basecamp" set using pattern "[{cardname}]({cardlink})^{cardcreationdate}^{cardagedays}", and post to url "https://25368.wayscript.io/test?registry=None&module=None" with payload "{\"report_variable\" : \"{$card_age}\"}"
the end point basically split the report variable into fields
item_list = para['report_variable'].split("\n")
item_list.pop() #remove last elementsp_list = []
for item in item_list:
split_item = item.split("^")
sp_list.append(split_item)
and there is a script that update a google sheet (just one way to show the data)
Card | Created On | Age in Days |
[Create card from unchecked checklist items and move to a list](https://trello.com/c/59XDybpj) | July 16, 2020 | 83.35 |
[Create card from unchecked checklist items, append link and move card to list](https://trello.com/c/NRdHKMcO) | July 16, 2020 | 83.31 |
[List unassigned member in board](https://trello.com/c/z0naiXMv) | July 30, 2020 | 68.52 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Run a list ... when you make the first card of the week, if you are using the chrome extension Pro4Trello, it gives all cards a number, probably from the trello database ... just use maths ... saves you $4/mo too.
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.
I had a look at the bluecat reports, but cant get past their pricing and signup screen, which on software turns me straight off ... if they cant tell me on the homepage or within one click, I'm not signing up to see what it does, however good I hope it might be.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.