<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Connect. Share. Inspire.</title>
        <link>https://community.smartsheet.com/en/</link>
        <pubDate>Wed, 08 Jul 2026 19:04:40 +0000</pubDate>
        <language>en</language>
            <description>Connect. Share. Inspire.</description>
    <atom:link href="https://community.smartsheet.com/en/discussions/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Combine emails into a multiple-contact column / multi-contact column</title>
        <link>https://community.smartsheet.com/en/discussion/123433/combine-emails-into-a-multiple-contact-column-multi-contact-column</link>
        <pubDate>Mon, 17 Jun 2024 20:50:31 +0000</pubDate>
        <category>Best Practice</category>
        <dc:creator>Brian_Richardson</dc:creator>
        <guid isPermaLink="false">123433@/en/discussions</guid>
        <description><![CDATA[<p>Multiple-contact columns can be problematic to use in Smartsheet.  Namely, they cannot be "put together" with a formula.  There's many use cases where you need to build multiple contacts into a cell based on criteria/lookups, but there isn't a way to do that in native core Smartsheet.</p><p>There is, however, a couple of methods to do that using addons.  In general I highly recommend looking at Advance packages for addons, they open a world of automation and customization beyond the core application.</p><p>Below are various mechanisms for managing multiple-contact data in Smartsheet.</p><p>Note that by "multiple-contact" I mean a Contact type column with the "Allow multiple contacts per cell" switch turned on in the column properties.</p><p>Final note:  thank you to <a data-username="Samuel Mueller" data-userid="137019" rel="nofollow" href="https://community.smartsheet.com/en/profile/Samuel%20Mueller">@Samuel Mueller</a> for telling me about same-sheet Data Mesh, being great with Bridge, and other general awesomeness.  Thanks to <a data-username="Paul Newcome" data-userid="45516" rel="nofollow" href="https://community.smartsheet.com/en/profile/Paul%20Newcome">@Paul Newcome</a> for being amazing on community and suggesting this post.  And my other fellow Overachievers for making Smartsheet fun on the daily!</p><p></p><h3 data-id="core-application"><strong>CORE APPLICATION</strong></h3><p>The bad news is that there's no way to "build" multiple contacts into a multi-contact column with a formula.</p><p>The only thing you can do is hand-type contacts, separated with comma, semicolon, or tab.</p><p>You cannot use Automations or Formulas to build a list of contacts.</p><p></p><h3 data-id="sheet-setup">SHEET SETUP</h3><p>All the methods below leverage a single sheet with three columns.  </p><ul><li>Column 1 is a text/number column.  This can be any number of formulas that produce a series of emails, separated by comma or semicolon.   <ul><li>For example, if you need to merge multiple columns of emails into one, you'd do something like <code spellcheck="false" tabindex="0">= JOIN ([Manager]:[VP], ";" )</code> resulting in <em>"manager@somewhere.com; director@somewhere.com; vp@somewhere.com"</em> in your cell</li><li>Alternatively, you may be pulling emails together from another sheet with a formula like <code spellcheck="false" tabindex="0">=JOIN(COLLECT({Email}, {Name}, HAS(Names@row, @cell)), ";")</code> - this formula looks at a second sheet that lists names and emails, and matches the names selected on the first sheet to the names on the second sheet to combine a list of emails.  The {} items are cross-sheet references to columns on the second sheet.</li><li>Note that you need to combine <strong>emails</strong>, <strong>not names</strong>.  Smartsheet has no way of mapping names like "Brian Richardson" or "Richardson, Brian" to an email address, and therefore will not convert a name to a contact</li></ul></li><li>Column 2 is a Contact column set to Allow multiple contacts.  There's no formula in this column.</li><li>Column 3 is an Autonumber column.  If you already have one, you can use that instead of setting up a new one.  Or if you have another means to setup a unique identifier for your rows, use that instead.  You need a unique identifier on each row.</li></ul><p></p><h3 data-id="data-mesh-method"><strong>DATA MESH METHOD</strong></h3><p>Data Mesh to the rescue!  Data Mesh is a paid addon tool for Smartsheet that is very powerful.  It is definitely one of the top tools to take your Smartsheet automations to the next level.</p><p>Using Data Mesh, you can copy/sync data between two sheets, or between columns in a single sheet.  Which is what we'll do here.</p><p>Key Value:  Data Mesh triggers on changes, so your contacts will update almost immediately.  It's also pretty easy to setup.</p><p>Key Drawback:  not as flexible as Bridge, but pretty close.</p><ol><li>Open <a href="https://datamesh.smartsheet.com" rel="nofollow noopener ugc">Data Mesh</a> and click <strong>New Config</strong></li><li>For Source:  find the sheet with your three columns, select it, and click next</li><li>For Target:  find the same sheet, select it, and click next</li><li>For Mapping:<ol><li>Lookup Values:  the Autonumber / Unique ID column</li><li>Data Field 1 (Source Sheet):  the Text/Number column that has your emails in it</li><li>Data Field 1 (Target Sheet):  the Multiple-Contact column</li></ol></li><li>For Options:  set Overwrite Existing Data to <strong>Yes</strong>.  Set Execution Frequency to <strong>Update Immediately</strong>.  Other settings can remain as-is.  </li><li>Give your workflow a name and hit Next, then Add</li></ol><p>That is all the setup you need.  Now, whenever your formula creates or updates a series of email addresses, separated by semicolon/comma in the Text column, Data Mesh will fire and quickly post those emails into the Contact column as separate contacts, one for each email!</p><p></p><h3 data-id="bridge-method">BRIDGE METHOD</h3><p>You can also accomplish this using Bridge.  Although somewhat complex to learn, the actual Bridge workflow for this is quite simple.  </p><p>Key Value:  fast and flexible - this workflow can be adjusted to do many more complex things, like looking up your contacts, manipulating the data, integrating contacts with other tools, or even running Javascript to match/map the emails to additional information.</p><p>Key Drawback:  Bridge doesn't alert you if there's problems (yet), so you'll have to notice if the contacts aren't getting populated as expected.</p><p>Here's the setup:</p><ol><li>You will likely want to Trigger the Bridge workflow when a list of emails is changed, or something similar.  You'll need to setup a quick placeholder blank workflow first, then in Triggers under Smartsheet setup a trigger for Column Values changed or maybe Row Updated, depending on your needs.  Point the trigger at your new blank workflow.</li><li>Add the <strong>Smartsheet: Get Row</strong> step to your workflow with the following settings:<ol><li>Sheet:  {{runtime.sheetID}}</li><li>Row:  if you used the Row Update trigger, use {{runtime.event.id}}.  If you used the Column Values trigger, use {{runtime.event.rowId}}</li></ol></li><li>Add the <strong>String Tools: Split Text</strong> step to your workflow.  <ol><li>Text:  {{states.startstate.smartsheet.get_row.row.cells.<em>name of the Text column with emails</em>.value}}</li><li>Delimeter:  ; or ,  (whatever you used in the column to separate your email addresses)</li></ol></li><li>Add the <strong>Smartsheet: Update Row</strong> step to your workflow<ol><li>Sheet:  {{runtime.sheetID}}</li><li>Row ID:  if you used the Row Update trigger, use {{runtime.event.id}}.  If you used the Column Values trigger, use {{runtime.event.rowId}}</li><li>Cells:  Key 1 = <em>name of the Contact column in your sheet set to multiple contacts.</em>   Value #1 = {{states.startstate.stringtools.split_text}}</li></ol></li></ol><p>That's it!  Now, whenever your comma/semicolon list of emails changes on the sheet, Bridge will read the list, split it back up, and post it into the multiple-contact column.</p><p></p><h3 data-id="data-shuttle-method"><strong>DATA SHUTTLE METHOD</strong></h3><p>If you don't have Data Mesh (get it!) or Bridge then you can also use Data Shuttle to accomplish the combination of emails into a multiple-contact column.  It's a little more involved.</p><p>Key Drawback:  Data Shuttle has to run on a schedule, with 15 minute intervals as the minimum.  You cannot trigger Data Shuttle to run when your contacts change.  And this relies on constant posting of attachments which fills up the attachments panel pretty quickly.</p><p>Key Value:  it's relatively easy to use the UI for setup, and it alerts you if there's problems.</p><p>You will setup 2 workflows… the first will output the emails to a CSV attachment, the second will import that same attachment as contacts.</p><p>Workflow 1</p><ol><li>Open <a href="https://datashuttle.smartsheet.com/" rel="nofollow noopener ugc">Data Shuttle</a> and click the + sign to start a new workflow</li><li>Select Offload workflow</li><li>For Source:  select the sheet that you setup in Pre-Setup</li><li>For Target, select CSV or XLSX format and Attachment.  Attachment should be pointed to the same sheet.   (note - you can put it elsewhere, it's just cleaner to keep it all in the same sheet.  if you put it elsewhere then just note that location, you'll need it for the second workflow).  Check the "Add headers" checkbox.</li><li>Skip to the Mapping screen.  Select the Autonumber column and the Text column with the email addresses and hit Next</li><li>Select Run on schedule and set to every 15 mins or whatever schedule you like</li><li>Click Next, give the workflow a name, then Save</li><li>Now Run the workflow that you just created.  After a minute or so you should have an attachment on your sheet.  You need to do this before doing Workflow 2 setup.</li></ol><p>Workflow 2</p><ol><li>Click the + sign in Data Shuttle to start a new workflow</li><li>Select Upload workflow</li><li>For Source:  select Attachment, then browse to the sheet that Workflow 1 saved to.  Select Most Recent.  Data Shuttle should find the attachment from running workflow 1 in step 8 above.  Select "This file has column headers".</li><li>For Target:  select the same sheet</li><li>For Options:  select Merge, and check only the Update checkbox</li><li>For Mapping:  select the Autonumber column as the Unique Identifier.  The mapping should already have mapped the Text column (with the emails) to itself, remove that mapping by changing to Not Mapped.  Add a mapping to set the Source Text column (with the emails) to the Target Contact column.</li><li>On the next screen select Run on Attachment</li></ol><p>That should do it!  Now, every 15 minutes, Data Shuttle will grab all the email addresses from the Text column, dump them to a CSV attachment, then import that same attachment to post the email addresses into the contact column and create the multiple-contacts.</p>]]>
        </description>
    </item>
    <item>
        <title>Data Shuttle Import Timestamp issue</title>
        <link>https://community.smartsheet.com/en/discussion/121489/data-shuttle-import-timestamp-issue</link>
        <pubDate>Sat, 04 May 2024 02:27:00 +0000</pubDate>
        <category>Add Ons and Integrations</category>
        <dc:creator>derekcosta</dc:creator>
        <guid isPermaLink="false">121489@/en/discussions</guid>
        <description><![CDATA[<p>I am attempting to import data from Excel with several Date &amp; Timestamp fields.</p><p>The format in the source file is: 04/16/2024 21:17</p><p>What I get in Smart Sheet upon Import: 45371.83695601851851851851851851852</p><p>I have tried leaving the destination column as text/number, I have tried setting it to Date - no dice.</p><p>The default settings for the timestamp formatting in the excel file is (this is how the system that generates the file sets it): </p><span data-embedjson="{&quot;url&quot;:&quot;https:\/\/us.v-cdn.net\/6031209\/uploads\/YQI2BZL0SVUT\/image.png&quot;,&quot;name&quot;:&quot;image.png&quot;,&quot;type&quot;:&quot;image\/png&quot;,&quot;size&quot;:107926,&quot;width&quot;:750,&quot;height&quot;:569,&quot;displaySize&quot;:&quot;medium&quot;,&quot;float&quot;:&quot;none&quot;,&quot;mediaID&quot;:125604,&quot;dateInserted&quot;:&quot;2024-05-04T02:40:51+00:00&quot;,&quot;insertUserID&quot;:184236,&quot;foreignType&quot;:&quot;embed&quot;,&quot;foreignID&quot;:&quot;184236&quot;,&quot;embedType&quot;:&quot;image&quot;,&quot;embedStyle&quot;:&quot;rich_embed_card&quot;}">
    <span>
        <a href="https://us.v-cdn.net/6031209/uploads/YQI2BZL0SVUT/image.png" rel="nofollow noopener ugc" target="_blank">
            <img src="https://us.v-cdn.net/6031209/uploads/YQI2BZL0SVUT/image.png" alt="image.png" height="569" width="750" data-display-size="medium" data-float="none" data-type="image/png" data-embed-type="image" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6031209/uploads/YQI2BZL0SVUT/image.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6031209/uploads/YQI2BZL0SVUT/image.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6031209/uploads/YQI2BZL0SVUT/image.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6031209/uploads/YQI2BZL0SVUT/image.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6031209/uploads/YQI2BZL0SVUT/image.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6031209/uploads/YQI2BZL0SVUT/image.png 2000w, https://us.v-cdn.net/6031209/uploads/YQI2BZL0SVUT/image.png" sizes="100vw" /></a>
    </span>
</span>
<p>I found that if I manually change the format to Date on these columns in the excel file before import, it works. This is a pain as I am trying to fully automate this process. Is there a way around this? </p><p>I see other timestamp questions on here, but cannot find guidance on this particular issue. </p><p>Any ideas? </p><p></p><p>Thanks,</p><p>Derek</p>]]>
        </description>
    </item>
    <item>
        <title>Enable stacked bar charts built directly from Reports</title>
        <link>https://community.smartsheet.com/en/discussion/145586/enable-stacked-bar-charts-built-directly-from-reports</link>
        <pubDate>Thu, 05 Mar 2026 16:34:23 +0000</pubDate>
        <category>Smartsheet Product Feedback &amp; Ideas</category>
        <dc:creator>kerrycam_</dc:creator>
        <guid isPermaLink="false">145586@/en/discussions</guid>
        <description><![CDATA[<p></p><p>When building a chart widget from a Report, Smartsheet currently only supports a basic bar chart. If I try to create a stacked bar chart from a Report (to split the bar by a second field like Status, CoC, Portfolio, etc.), it does not work as expected.</p><p>This limits dashboard reporting because Reports are the cleanest way to roll up data across many sheets, but the visualization options are reduced compared to charts built from a single sheet.</p><p>It would be very helpful to support stacked bar charts directly from Reports, including:</p><ul><li>Stack by a second field (dropdown, symbol, contact, etc.)</li><li>Preserve grouping and filters defined in the Report</li><li>Support 100+ source sheets without requiring a consolidated “master sheet” workaround</li></ul>]]>
        </description>
    </item>
    <item>
        <title>Feedback on New Dashboard Update (July 2026) - Impact on workflow efficiency</title>
        <link>https://community.smartsheet.com/en/discussion/147349/feedback-on-new-dashboard-update-july-2026-impact-on-workflow-efficiency</link>
        <pubDate>Thu, 02 Jul 2026 16:06:19 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>JGS</dc:creator>
        <guid isPermaLink="false">147349@/en/discussions</guid>
        <description><![CDATA[<p>I'm adding my voice to the growing number of users expressing frustration with the recent dashboard UI/UX update. While I understand the need for platform evolution, this specific update has introduced significant friction into my daily operation. </p><ul><li><strong>Increased Navigation:</strong> Moving the edit button to the opposite side of the screen from the edit interface creates unnecessary swiping. This breaks established muscle memory and adds friction to frequent administrative tasks. </li><li><strong>Edit Resizing:</strong> The auto resizing of the dashboard widgets when the edit interface opens is jarring and nauseating. It makes it difficult to maintain focus when making iterative changes. </li><li><strong>Formatting Regression:</strong> Since the update, the rendering of existing text and links had shifted, and not in a good way. It's forcing me to manually reformat dashboards that were previously stable. This is a significant time sink for those of us managing complex, high-level reporting. </li></ul><p>I would strongly urge the product team to reconsider these UI functions or, at the very least, provide an option to revert to the previous layout functionality. <strong>Efficiency and stability</strong> are most critical for those of us relying on Smartsheet to manage scaling operational workflows. <strong>New features or layouts must be incremental and seemless</strong> to the user experience. Not throw it into chaos.</p>]]>
        </description>
    </item>
    <item>
        <title>Smartsheets Support Non Existant!!!!!!</title>
        <link>https://community.smartsheet.com/en/discussion/147397/smartsheets-support-non-existant</link>
        <pubDate>Wed, 08 Jul 2026 16:32:45 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>Niiki</dc:creator>
        <guid isPermaLink="false">147397@/en/discussions</guid>
        <description><![CDATA[<p>Does anyone know how to reach some kind of support?? There is no one to speak to and our entire account is down! Help!</p>]]>
        </description>
    </item>
    <item>
        <title>COUNTIFS in Sheet Summary utilizing a Contact Card column</title>
        <link>https://community.smartsheet.com/en/discussion/147374/countifs-in-sheet-summary-utilizing-a-contact-card-column</link>
        <pubDate>Tue, 07 Jul 2026 15:49:41 +0000</pubDate>
        <category>Formulas and Functions</category>
        <dc:creator>Tim Effrig</dc:creator>
        <guid isPermaLink="false">147374@/en/discussions</guid>
        <description><![CDATA[<p>I am trying to create a sheet summary, where the field is a formula that relies on a contact card within a column.  However, it keeps returning a result of "#NO MATCH".  The columns involved are, 1:) Priority (symbol column) for Up, Unchanged, and Down, and 2:) Contact Card column.  I am trying to get a sheet summary formula in a field that shows "if the Priority is "Up", and the "Senior RVP" column is a contact card (NAME), provide a count of Priority "Up" for that contact card (NAME)</p><p>It should be known that the "Senior RVP" contact card is doing a vlookup off a seperate reference sheet, so the "Senior RVP" column is a return vlookup result.  </p><p>The formula I am using in the Sheet Summary field is:</p><p>=COUNTIFS(Priority:Priority,"Up", [Senior RVP]:[Senior RVP], "NAME")</p><p>Result = #NO MATCH</p>]]>
        </description>
    </item>
    <item>
        <title>Seeking Assistance with Smartsheet for Task Management</title>
        <link>https://community.smartsheet.com/en/discussion/129487/seeking-assistance-with-smartsheet-for-task-management</link>
        <pubDate>Sat, 17 Aug 2024 03:22:31 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>Connor at DFES</dc:creator>
        <guid isPermaLink="false">129487@/en/discussions</guid>
        <description><![CDATA[<p>Hi all,</p><p>I’m very new to Smartsheet and am keen to explore its features with the goal of eventually rolling it out in my work area. I have an enterprise license assigned through the Government.</p><p>In our area—Media and Corporate Communications—we receive many tasks through Microsoft Outlook. These often include requests for speech notes, talking points, briefing notes, event documents and similar tasks. These requests come down through Ministerial Services, progress to Corporate Services (which our area reports to), and finally reach us. Theoretically, this process involves two separate Outlook tasks before reaching us. Additionally, lateral tasks are sent out to other areas to request briefing notes (or simply information) so that we can write the necessary content. While the tasking mechanism itself (BN specific) is out of scope, one of the things I want to improve is the tracking of briefing notes.</p><p>Here’s some context around briefing notes (BNs): In many instances, BNs are tasked to other commands to draft and get approved. Once drafted, they are sent up the chain, approved and then provided to Ministerial Services. For us to write speech notes, these BNs then come down again through email to Corporate Services and finally to us. The challenge with BNs and event-related tasks is that they are heavily dictated by the Minister's Office, meaning that information frequently changes—dates, attendees and so on. I find it almost impossible to keep up with the numerous tasks and BNs that flow through my email daily.</p><p>Hence, I’m seeking assistance with the following:</p><ol><li>I require a tasking system that can either, at the Corporate Services level, assign tasks (through a form or direct entry into a sheet).</li><li>I need the ability to attach BNs and provide commentary on each task, which should be possible at the Corporate Services level.</li><li>I need the ability to send documents, once completed, for approval and attach them to the relevant tasks, either through forms or direct entry into a sheet.</li><li>I need to be able to attach email commentary to each task as a record.</li><li>I require the ability to assign relevant tags to tasks (e.g., "for the Minister," "for the CEO").</li><li>I need to track and display data, such as the time taken from task assignment to draft completion and submission for approval.</li></ol><p>I’ve reviewed some of the templates available in Smartsheet, and I can see there are task tracking templates. Are these the best option, or should I create my own?</p>]]>
        </description>
    </item>
    <item>
        <title>I cannot update share permissions in a sheet</title>
        <link>https://community.smartsheet.com/en/discussion/147399/i-cannot-update-share-permissions-in-a-sheet</link>
        <pubDate>Wed, 08 Jul 2026 17:56:29 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>A&amp;W Admin</dc:creator>
        <guid isPermaLink="false">147399@/en/discussions</guid>
        <description><![CDATA[<p>Hi, </p><p>I have a weird scenario I can't find the answer to. I have a sheet where, for some reason, the permissions are set at the Workspace level and not the sheet level. I've never seen this before, and I can't find any documentation. My issue is that some of these users are external and should no longer have access. They're not part of the workspace, but they are still listed in the sheet share list, so I'm not sure if they have access or not. Has anyone seen this before? </p><p></p><span data-embedjson="{&quot;url&quot;:&quot;https:\/\/us.v-cdn.net\/6031209\/uploads\/BQFSSCC04KLV\/image.png&quot;,&quot;name&quot;:&quot;image.png&quot;,&quot;type&quot;:&quot;image\/png&quot;,&quot;size&quot;:66921,&quot;width&quot;:644,&quot;height&quot;:546,&quot;displaySize&quot;:&quot;large&quot;,&quot;float&quot;:&quot;none&quot;,&quot;downloadUrl&quot;:&quot;https:\/\/community.smartsheet.com\/api\/v2\/media\/download-by-url?url=https%3A%2F%2Fus.v-cdn.net%2F6031209%2Fuploads%2FBQFSSCC04KLV%2Fimage.png&quot;,&quot;active&quot;:true,&quot;mediaID&quot;:176011,&quot;dateInserted&quot;:&quot;2026-07-08T17:50:31+00:00&quot;,&quot;insertUserID&quot;:135032,&quot;foreignType&quot;:&quot;embed&quot;,&quot;foreignID&quot;:&quot;135032&quot;,&quot;embedType&quot;:&quot;image&quot;,&quot;embedStyle&quot;:&quot;rich_embed_card&quot;}">
    <span>
        <a href="https://us.v-cdn.net/6031209/uploads/BQFSSCC04KLV/image.png" rel="nofollow noopener ugc" target="_blank">
            <img src="https://us.v-cdn.net/6031209/uploads/BQFSSCC04KLV/image.png" alt="image.png" height="546" width="644" data-display-size="large" data-float="none" data-type="image/png" data-embed-type="image" srcset="https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=300, width=300/6031209/uploads/BQFSSCC04KLV/image.png 300w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=600, width=600/6031209/uploads/BQFSSCC04KLV/image.png 600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=800, width=800/6031209/uploads/BQFSSCC04KLV/image.png 800w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1200, width=1200/6031209/uploads/BQFSSCC04KLV/image.png 1200w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=1600, width=1600/6031209/uploads/BQFSSCC04KLV/image.png 1600w, https://us.v-cdn.net/cdn-cgi/image/quality=80, format=auto, fit=scale-down, height=2000, width=2000/6031209/uploads/BQFSSCC04KLV/image.png 2000w, https://us.v-cdn.net/6031209/uploads/BQFSSCC04KLV/image.png" sizes="100vw" /></a>
    </span>
</span>
]]>
        </description>
    </item>
    <item>
        <title>Automation is repeating the subject line 3 times</title>
        <link>https://community.smartsheet.com/en/discussion/123362/automation-is-repeating-the-subject-line-3-times</link>
        <pubDate>Fri, 14 Jun 2024 16:52:51 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>Kelli Bretsch</dc:creator>
        <guid isPermaLink="false">123362@/en/discussions</guid>
        <description><![CDATA[<p>I've set up an automation to go to the contacts listed in contact column.  One contact is a cell phone number with SMS gateway code so that it can go as a text.</p><p>It works great, other than it repeats the subject line I enter in the automation three times before inserting the body of the message.  For example my subject line in the automation is "Please complete".  When I receive the automation its showing up as:</p><p>"(Please complete) Please complete Please complete" </p><p>Then the body</p><p>The automation is an Alert, Sent to Contacts in a cell with my contact column selected with a custom subject and body with it including the message only, no links to the sheet or fields.</p><p>Can anyone provide guidance on how to get it to stop repeating the subject line 3 times?  I've tried just using a space, then it just displays "(no subject)".  I've tried using a * but that displays as (*) * *.  </p><p>Any help would be appreciated! </p>]]>
        </description>
    </item>
    <item>
        <title>Cannot delete/update a user</title>
        <link>https://community.smartsheet.com/en/discussion/147390/cannot-delete-update-a-user</link>
        <pubDate>Wed, 08 Jul 2026 12:48:20 +0000</pubDate>
        <category>Smartsheet Basics</category>
        <dc:creator>GreggB</dc:creator>
        <guid isPermaLink="false">147390@/en/discussions</guid>
        <description><![CDATA[<p>Hey Folks,</p><p>When I first created a user and invited them to a shared sheet, I misspelled their name and email addy. I've tried editing their user but cannot. I deleted their user and recreated it with the correct spellings and it defaults back to the wrong one. We're stuck. What to do?</p>]]>
        </description>
    </item>
   </channel>
</rss>
