Hi, I have 1 card that I update with a check list daily. How can I get the new list to auto populate on top instead of defaulting to the bottom where I have to scroll all the way down and pull it up past many many many older check lists....
Thanks!
Rebecca
This can be really easily done using a tool like Make (make.com) or Zapier
My preference is Make and I am a make "expert". If you choose to use Make, I can share the automation blueprint for you to copy/paste into a new Make scenario:
This simple Make scenario will watch for new checklists and when a new checklist is added to a card, will move it to the top of the card.
{
"subflows": [
{
"flow": [
{
"id": 2,
"module": "trello:watchActivitiesInstant",
"version": 4,
"parameters": {
"__IMTHOOK__": 1003581
},
"mapper": {},
"metadata": {
"designer": {
"x": -128,
"y": -9,
"name": "Watch for checklists to be added"
},
"restore": {
"parameters": {
"__IMTHOOK__": {
"label": "Card added to home",
"data": {
"editable": "false"
}
}
}
},
"parameters": [
{
"name": "__IMTHOOK__",
"type": "hook:trello",
"label": "Webhook",
"required": true
}
]
}
},
{
"id": 3,
"module": "trello:makeApiCall",
"version": 4,
"parameters": {
"__IMTCONN__": 540950
},
"mapper": {
"url": "/checklists/{{2.action.data.checklist.id}}",
"method": "PUT",
"headers": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": "{\"pos\" : \"top\"}"
},
"metadata": {
"designer": {
"x": 226,
"y": -12,
"name": "Move found checklist to top"
},
"restore": {
"parameters": {
"__IMTCONN__": {
"label": "Trello - Dreamsuite (dreamsuitemike)",
"data": {
"scoped": "true",
"connection": "trello"
}
}
},
"expect": {
"method": {
"mode": "chose",
"label": "PUT"
},
"headers": {
"mode": "chose",
"items": [
null
]
},
"qs": {
"mode": "chose"
}
}
},
"parameters": [
{
"name": "__IMTCONN__",
"type": "account:trello",
"label": "Connection",
"required": true
}
],
"expect": [
{
"name": "url",
"type": "text",
"label": "URL",
"required": true
},
{
"name": "method",
"type": "select",
"label": "Method",
"required": true,
"validate": {
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE"
]
}
},
{
"name": "headers",
"type": "array",
"label": "Headers",
"spec": [
{
"name": "key",
"type": "text",
"label": "Key"
},
{
"name": "value",
"type": "text",
"label": "Value"
}
]
},
{
"name": "qs",
"type": "array",
"label": "Query String",
"spec": [
{
"name": "key",
"type": "text",
"label": "Key"
},
{
"name": "value",
"type": "text",
"label": "Value"
}
]
},
{
"name": "body",
"type": "any",
"label": "Body"
}
]
}
}
]
}
],
"metadata": {
"version": 1
}
}
You can drag and drop checklist items to rearrange them in any order.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That’s literally the issue I’m complaining about. Once I get 30 days in that’s an awful lot of dragging to have to do…
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.