Best Of
Re: Change of Symbol Value Colors
I copy and paste the symbol in the Drop-down list and in my formula
IF([Blocked/On Hold]@row = "โ ๏ธ On Hold"
Re: Change of Symbol Value Colors
Yes, I just added wording for my use case.
Here is the site I refer to for symbols.
Re: Automated formulas
Hey @Maria Ponce
If I'm understanding you correctly, you have a formula in another Date column like this:
If so, you can right-click on any cell in that column with a formula to apply it to the entire column:
Here's more information: Use column formulas to apply calculations to all rows in a sheet
Cheers,
Genevieve
Genevieve P.
Re: Is there a way to add a new summary field from a master project template?
Hey @stephenwiant
Paul is correct - there's no automatic way to push a Summary Field to multiple sheets that have already been created. The Summary Field would need to already exist in the Template before the sheets are created.
The Smartsheet API does have a way to add Summary Fields, if you wanted to do it programatically instead of one-by-one in the App. Here's the documentation.
Cheers,
Genevieve
Genevieve P.
Re: Internal Auditing - ISO9001
Hi Michael and RebSchr!
New to Smartsheet. I'm trying to build the exact same system as Michael. Since it's been a few months since this thread was opened, how is your system(s) working out? If you have any tips or suggestions, it would be mighty appreciated.
We've been doing audit on MS word Audit Reports (including Checklist, Observations, Recommendations), assigning # and tracking scheduled audits via MS Excel, then tracking observations via Smartsheet (Parent Audit No., children all the observations), route Audit Report via AdobeSign, and attach signed report onto Smartsheet. I'm working on building it all in Smartsheet instead, I have so far:
- one sheet with multiple Audit Checklists Forms. I liked the auto-numbering but re-considering since there's so many columns for all the checklists (dropdown Acceptable, Not Acceptable, N/A). Automation Generate Document intended to be routed managers (considering the check and comments instead though)
- one sheet with Observations+Recommendations Form - each to be routed, tracked and followed up on.
- one report that groups Audit Areas, lists the Audit Checklists and associated Observations and Recommendations.
Things I'm trying to figure out:
- I don't love separating Audit Checklists and Observations+Recommendations onto different Forms (and different Sheets, and different Generate Doc). Sometimes one checklist item has multiple observations, sometime one observation relate to multiple checklist items.
- it's a lot of columns, but wondering if assigning numbers separately or pre-assigning in in the audit schedule different sheet may be better
- Having trouble with the Annual Schedule and Dashboard.... for you, do auditors just manually check if its completed? or are you having a formula that automatically updates to complete based on your Checklists being complete?
Any help would be mighty appreciated,
Tran
Re: Text to Date
@Ipshita Mukherjee thank you for finding that guidance for me. The frustrating thing is that I HAD done something that worked that didn't involved all those formulas and in a fit of "why do I need these columns?" I deleted them and cannot for the life of me remember what I did. I'm checking to see if there is any way to get that version (I just need the one from 6 Oct) to see what I did. I have see the guidance above but just couldn't wrap my head around it knowing that whatever I did was so much easier!
Re: Move automation is moving all items (not just the trigger)
Thanks for all of the input. I was never able to figure out the problem on my own but I spoke to tech support at Engage last wee k and we finally identified that it was happening only when I performed the "run now" check on the whole document. So I had to add an additional condition ๐
jacquedale
Calendar Tricks - Adding and Deleting Entries from Within the Calendar View
We use the Smartsheet Calendar view to manage all of our activities for a TV show.
The issue becomes Adding and Deleting events in the Calendar View as you have to to go back to the Grid view to do it.
Here is my Workaround:
To Add Events
- Create a Form attached to the sheet to allow the user to create a new entry. Make sure you configure it properly how you want it.
- Once done open the form and copy the URL
- Create a Column in the Sheet Call it Something like New Record
- Add the formula ="
{The URL You Copied}" with the URL pasted between the equals and quotes. It now puts a clickable URL in that column- Note: It might be easier to do this in a notepad and not type right into smartsheet. Then simply paste the formula into the cell. It can get a bit confusing trying to click the column to edit it..
- Now Right Click the Cell and select Convert to Cell Formula and it will copy the formula down.
Now when you are in Calendar View and you click Edit on the event there is a URL in each entry that you can click and it will allow you to add a new entry to the calendar via the form without going back to grid view!!
To Delete Events
First Create a Duplicate Calendar File
- There are a few different ways to do this but I prefer this method to create the Archive Sheet
- Copy the Calendar File by choosing SaveAsNew
- Name it Something like CalendarArchive
- Check Sharing Options
- Uncheck the Automated Workflows & Alerts
- Uncheck Everything under Sheet Data and Formatting
- Copy the Calendar File by choosing SaveAsNew
- Note: You could SaveAsNew and then open it and delete all the data.. JUST MAKE SURE YOU ARE IN THE ARCHIVE SHEET AND NOT THE MAIN SHEETย
Now create the Column and the Workflow.
- Again create a column and call it something like "Delete Record"
- Chose Edit Column Properties and choose Column Type CheckBox
- Now open AUTOMATION > CREATE WORKFLOW FROM TEMPLATE
- Chose the "Move a Row to Another Sheet when Specified Criteria Met"
- Now Simply Choose when Delete Record is Checked Move the Specified Row to the Archive Sheet.
Now when you are in Calendar View and you click Edit there is a checkbox in each entry that you can click and it will "delete" the record you have selected.
Might take some time for the workflow to perform the action and update the calendar but my users know once they click it that it will eventually disappear
The good thing is that if a user accidentally "deletes" something you can go to the archive file and simply move it back manually by Right-clicking the row and selecting move to another sheet
** If you have been paying attention the archive sheet is missing the DeleteEvent Column.. don'tย worry smartsheet will automatically create it when it moves the first row over
Hope that helps some people !!
Brent Wilson
Re: AVERAGEIF Formula Help
When a column name has spaces, numbers, and/or special characters, you need to use square brackets around them in a formula.
Try wrapping each [Employee Name] column reference in square brackets the same way you wrapped the [Overall Satisfaction] column names in square brackets.
Paul Newcome
Re: Can I pull columns in different Sheets in one report as long as Primary Column is the same?
Hey @MMcLain
No problem at all!
So for a formula, I would have one sheet that lists all the unique IDs. In my example above it's the Name. Then I would use an INDEX(MATCH combination to search through Sheet 1 to find the same name and bring back certain cell data:
=INDEX({Sheet 1 Column A}, MATCH([Name Column]@row, {Sheet 1 Name Column}, 0))
You would need to do this for each column you want brought over, changing out what column you're indexing in the front of the formula for what to bring back:
=INDEX({Sheet 1 Column B}, MATCH([Name Column]@row, {Sheet 1 Name Column}, 0))
=INDEX({Sheet 1 Column C}, MATCH([Name Column]@row, {Sheet 1 Name Column}, 0))
Then when you get to a column that's in a different sheet, delete out the references and create ones that look at the next sheet instead:
=INDEX({Sheet 2 Column D}, MATCH([Name Column]@row, {Sheet 2 Name Column}, 0))
=INDEX({Sheet 2 Column E}, MATCH([Name Column]@row, {Sheet 2 Name Column}, 0))
=INDEX({Sheet 2 Column F}, MATCH([Name Column]@row, {Sheet 2 Name Column}, 0))
Here's more information:
Cheers,
Genevieve
Genevieve P.





