we use the checklist mainly to assign the next to do's in a smaller project to different people. it would be great if when an item in the checklist is checked that would trigger an automatic notification to the person who is assigned to the next point in the list. is this somehow possible?
Hey @Melanie Nobs - welcome to the Community!
Sorry that the advice above wasn't for Trello. As a Standard customer, you can raise a ticket with our support team to discuss this at https://support.atlassian.com/contact
Sure you can do this.
Your trigger would be "When field Changed"
Here are the smart values that can be used to see what has changed. You can use those to identify what was checked and who to move the ticket to
Used with: any triggers that edit an issue.
This smart value accesses the changelog, and a list of changes for each field. For example, when an issue is transitioned you can see what status the issue transitioned from.
Learn more about using smart values with sections and lists.
{{changelog.summary}} - Changelog information for the Summary field.
{{changelog.issuetype}} - Changelog information for the Issue type field.
{{changelog.status}} - Changelog information for the Status field.
This example returns the new value of an issue's Summary field after it has been changed.
{{#changelog.summary}}
{{toString}}
{{/}}
This example returns an issue's previous type, after it has been changed.
{{#changelog.issuetype}}
{{fromString}}
{{/}}
This example shows the previous status for issues that are transitioned.
{{#changelog.status}}{{fromString}}{{/}}
This example shows the previous status id (for use in another Edit action)
{{#changelog.status}}{{from}}{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks a lot! It might be because I'm still quite new to trello, but I don't see where I could integrate those values?
the trigger that seems most appropriate in my case is the one marked in the screenshot below, but it's not quite that neither
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I missed the fact that this is Trello. I would say that you are correct. The Trigger above is likely what you want. You could use {{checklistname}} to determine the next asssignee
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
oh ok, thanks for your help anyway.
the thing is that it's not a checklist or a specific checklist item I'd like to select, but the person assigned to this specific checklist item...
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.