Best Of
Re: February Question of the Month - Join the conversation and receive a badge
I'm honestly impressed by the creativity of some of these badges already made by the Smartsheets team. A Community Mentor badge might be cool to have. Basically add a button to peoples profiles so others can nominate them for it. It might be nice to follow people too. Some of these folks have great post all the time.
Re: Update one sheet based on two columns from another sheet
Hi Peggy,
Thank you for your help, but I am running into an issue. I put in the same exact formula with basically the exact sheet you made just to test it out and I keep getting the 'not in sheet' line instead of a check box
Am I missing another reference where {Review Sheet - Task Number} is?
EDIT** I figured out it out, I had to remove the "{Review Sheet - Task Number}, 0))" part of the formula and it worked, I think it was the way you nicknamed the range.

Re: Method to limit attachment types?
Hi Lorenia,
To add to Pauls excellent answer.
You could also add a checkbox or similar that indicates the type the user attached or that they acknowledge that they've added the correct type.
Make sense?
Would that help/work?
I hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
✅Did my post help or answer your question or solve your problem? Please help the Community by marking it as the accepted answer/helpful. It will make it easier for others to find a solution or help to answer!

Re: IF & ISBLANK with two Criteria in separate columns
The #INVALID REF error means one of the cross sheet references is incorrect. Were you receiving an error with the formula you originally posted? I copied the references from there, so they should be the same. One or more of these either do not exist or are incorrect:
{Section & Chapter Reporting Form Month}
{Select the reporting year.}
{Section & Chapter Reporting Form Unique ID}

Re: RYGB Based on two date columns
Hi @MMorgan
Try this formula:
=IF(AND([End Date]@row > TODAY(), Status@row = "In Progress"), "Green", IF(AND(AND([Start Date]@row <> "", [Start Date]@row <= TODAY()), OR(Status@row = "To Do", Status@row = "Backlog", Status@row = "Planning")), "Yellow", IF(AND([End Date]@row < TODAY(), OR(Status@row = "In Progress", Status@row = "On Hold")), "Red", IF(AND(OR([End Date]@row = "", [Start Date]@row = ""), OR(Status@row = "In Progress", Status@row = "On Hold")), "Red", IF(AND([Start Date]@row = "", OR(Status@row = "To Do", Status@row = "Backlog")), "Blue")))))
Hope it works for you.

Re: Contact list in Smartsheet after importing data
Hi @JGarcia0703
You're facing a common challenge when importing contact data into Smartsheet. Since your list comes from Excel and Smartsheet does not automatically recognize names as contacts upon import, there are a few potential solutions.
Option 1: Use Data Shuttle to Update the Contact List (Requires Smartsheet Advance Plan)
- How It Works: You can configure Data Shuttle to update the contact column from your Excel file automatically.
- Pros:
- Automates the process, reducing manual effort.
- You can keep your list updated weekly without intervention.
- Cons:
- If full names are imported as text, Smartsheet will not treat them as contacts.
- Only email addresses will function correctly in a contact list.
- Requires a Smartsheet Advance Plan (not available in all accounts).
The image below is part of the Data Shuttle workflow that updates the contact list with email text.
Option 2: Import Excel Data and Manually Convert to Contacts
- How It Works: You can format names in your Excel file as
Jane Doe <jane.doe@somecompany.com>
, then import the file and manually convert the column to a Contact List column. - Pros:
- No need for additional Smartsheet tools (like Data Shuttle).
- Provides both the name and email address.
- Cons:
- Requires a manual step each time after import to convert text into contacts.
- Still time-consuming on a weekly basis.
This link is my post on this method.
https://community.smartsheet.com/discussion/comment/369125
I put this demo dashboard to illustrate this method somewhere in 2023.
Option 3: Use the Smartsheet API to Update Contacts Automatically
- How It Works: You can use the Smartsheet API to programmatically update the column and ensure names are correctly formatted as contacts. This script could be triggered automatically when your list is updated.
- Pros:
- Fully automates the process.
- Ensures that names display correctly and function as contacts (for @mentions, update requests, etc.).
- Cons:
- Requires development work to implement an API script.
- Needs API access and permissions.
The code explained in the comment below does not update the contact list option. It adds contact value using the name and email information.
Best Approach Based on Your Needs
- If you have access to Data Shuttle, this could be a good option for automating updates. However, email-only imports may limit usability.
- If you don’t have Data Shuttle, importing an Excel file with properly formatted data (
Name <email>
) and manually converting to contacts is an easy workaround. - If your team has API capabilities, using the Smartsheet API is the best long-term, fully automated solution.
Would you like help with an API script to automate this process? Let me know what works best for you!
Re: automatically apply =Min/Max of descendants formula to parent rows based on hierarchy number?
Oh, and you can alternately use the following:
=MAX(CHILDREN())
=MIN(CHILDREN())
Will yield same results as using descendants.

Re: Can I get help getting my colleagues logged in?
Thank you @Genevieve P.! That was the help I needed.

Re: Help with formula to count multiple select in one cell
Hello @scanlan99
If it is a multi select column, you need to use HAS in the formula. Give this a try:
=COUNTIFS([Column Name]:[Column Name],HAS(@cell, "Criteria"))
For this: What would be even more awesome, would be to count the number of times that an option is within a cell AND the status of that project.
Give this a try:
=COUNTIFS([Column Name]:[Column Name],HAS(@cell, "Criteria"), [2nd Column]:[2nd Column],"Criteria")
Hope this helps!
