Grouped Update Requests
I am looking for a way to send multiple update requests in a single email.
Here is the scenario. Once a product is inspected, I want to check a Smartsheet checkbox saying that it passed inspection. Then I want Smartsheet to automatically send out an update request to our shipping department telling them to go ahead and send the product. This update request needs a way for the shipping department to respond saying the product has been shipped.
This works fine if there is just one product being inspected. I can use the 'When Triggered' option in my automation. The problem is when I have 15 or 20 items being checked each hour. The shipping dept. gets inundated with emails. But Smartsheet automation does not allow me to run an Hourly or Daily workflow when requesting an update.
Is there a different way to allow the recipient to respond to a notification that doesn't require them to go into Smartsheet? I don't want them to have access to my main sheet.
Thanks for any and all suggestions!
Best Answer
-
凯利摩尔 ✭✭✭✭✭✭
Hello@M38a1
Update Requestsareallowed on an hourly basis however Placeholders cannot be included in hourly automations. Does you notice include the Placeholders{{field names}}in your automation email?
As an alternative approach, does your license give you access to smartsheet's premier app Dynamic View? If yes, Dynamic View could allow real time visibility of what needs shipping, allow the ability for the user to update specific fields and does not require access to the underlying sheet. If you used a 'Needing Shipping' report to feed the Dynamic View, the Dynamic View webpage would be the real-time list of orders needing shipment. Potentially, this could eliminate the annoying emails to the shipping department all together.
Does either bit of information help with your problem?
Kelly
Answers
-
凯利摩尔 ✭✭✭✭✭✭
Hello@M38a1
Update Requestsareallowed on an hourly basis however Placeholders cannot be included in hourly automations. Does you notice include the Placeholders{{field names}}in your automation email?
As an alternative approach, does your license give you access to smartsheet's premier app Dynamic View? If yes, Dynamic View could allow real time visibility of what needs shipping, allow the ability for the user to update specific fields and does not require access to the underlying sheet. If you used a 'Needing Shipping' report to feed the Dynamic View, the Dynamic View webpage would be the real-time list of orders needing shipment. Potentially, this could eliminate the annoying emails to the shipping department all together.
Does either bit of information help with your problem?
Kelly
-
M38a1 ✭✭✭✭
Hi Kelli - The placeholders are what is holding me up. Thanks for that insight. I'll have to rearrange the wording on my message to be more generic.
Eric
Categories
You would use the below for Jan 2023 and adjust the month and year numbers accordingly for each of the other months.<\/p>
=IF(AND(MONTH([Start Date]@row)<= 1, YEAR([Start Date]@row)<= 2023, MONTH([End Date]@row)>= 1, YEAR([End Date]@row)>= 2023), [$ per month]@row)<\/p>"},{"commentID":387901,"body":"
Lets try a different approach.<\/p>
=IF(AND(VALUE(YEAR([Start Date]@row) + IF(MONTH(Start Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/86811/\") + MONTH([Start Date]@row))<= 202307<\/strong>, VALUE(YEAR([End Date]@row) + IF(MONTH([End Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/86811/\") + MONTH([End Date]@row))>= 202307<\/strong>), [$ per month]@row)<\/p> Basically we are creating a yyyymm stamp from the start and end dates and comparing them to the yyyymm stamp for that year\/month combo. The above is for July 2023 (202307).<\/p>"},{"commentID":387906,"body":"
<\/p>