Best Of
Re: IF INDEX MATCH yielding INVALID DATA or NO MATCH
The format for an if() function is:
=if(Test, Value if True, Value if False)
Your test section was written as: INDEX({CT Certs Range 1}, MATCH([Instructor Name]@row, {CT Certs Range 1}, 0))
This tells Smartsheet to index through your {CT Certs Range 1} by a variable number of rows (in this case, by the number of rows necessary to find the name from [Instructor Name]@row). What is DOESN'T do is give any test to be evaluated as true or false. Smartsheet finds some names, indexes through them and chooses the first, but then your "test" is just that name… hence, trying to decide whether "Frank" is true or false.
For the test section you need to include a comparison operator (the official documentation is quite poor on this, btw). Here is the list for Excel (there is no official list for Smartsheet):
So, for your test you need to use one of these so it could evaluate to either true or false. You could have done something like:
=IF(INDEX({CT Certs Range 1}, MATCH([Instructor Name]@row, {CT Certs Range 1}, 0))=[Instructor Name]@row, "yes", "no")
and it would likely have also worked. In this case, the formula is saying "Go do that indexing and grab the first name, if it matches with the name over in this other column consider it true and do the following…. otherwise….."
You see, it is the "if it matches…." bit that was missing before and that adding "=[Instructor Name]@row" to the "test" portion of the formula adds.
Alternatively, in the formula I recommended to you, you can see that I tell it to get the count but then the test is actually "if that count is greater than 0".
Jgorsich
File Library: Single File Sharing Now Available!
We’re excited to announce the release of single file sharing for file library! Users can now quickly and securely share individual files with anyone, whether they’re already a part of your Smartsheet account or not, without granting access to the entire workspace. Maintain project oversight and control of your critical content by knowing exactly who has access to your files. Learn More
Environment Availability: Commercial US
Plan Availability: All plans
Subscription Model Availability: User Subscription Model
Karin Maltrud
Re: Dashboard - Dividers
I uploaded a bunch if you want to grab some for your use here
Is there a way to add a thin vertical line to a dahsboard? — Smartsheet Community
Here are a few i showed in action. Just go to the link above and you will see my post with the attachments. You can always reply here if you want more or grab the handful in the link above
Julie Becker
We’ve made improvements to your copy and save experiences
Good news community, we’ve updated the speed of our Save as New performance, so now you can expect better, more reliable save behavior, especially for large folders and workspaces.
We’ve also made improvements to the dashboard copying experience. Specifically, we have enhanced form relinking in dashboards, a feature that began rolling out in a prior release, to make it more seamless. Now, when you copy or save from a folder containing a dashboard with an embedded form, the copied dashboard will automatically link the new form with the newly created sheet. Previously, the form link would continue pointing to the original sheet, requiring manual updates. This enhancement eliminates that extra step, ensuring copied dashboards function correctly right away. To learn more about this, you can reference the help article here.
Note: We will roll this out to all users over the next several weeks.
Environments availability: ,Commercial US
Plan availability: All
Subscription Model Availability: Both
Stay informed by Subscribing to receive product release updates for curated news of recently released product capabilities and enhancements for the platform of your choosing, delivered to your inbox. As new releases occur, you will receive a weekly email with news of what's released every Tuesday.
Thank you,
John Hieger
Product Marketing
John Hieger
Re: Having issues with Year formulas
Does this work?
=IF(YEAR([Date Completed]@row) - YEAR(Age@row) - IF(MONTH([Date Completed]@row) < MONTH(Age@row), 1, 0) > 0, (YEAR([Date Completed]@row) - YEAR(Age@row) - IF(MONTH([Date Completed]@row) < MONTH(Age@row), 1, 0)) + " Y ") + (MONTH([Date Completed]@row) - MONTH([Date Completed]@row) + IF(MONTH([Date Completed]@row) < MONTH(Age@row), 12, 0)) + " M"
Paul Newcome
Re: Row number fuction
I strongly support this enhancement. Also wanted to put the workaround out there for anyone looking for it.
Using the auto number column you can achieve this.
lets say the auto number column is named AutoNumber, and the row number column is named Row
In your helper column you would put =MATCH(AutoNumber@row, AutoNumber:AutoNumber, 0), and make it a column formula.
This would give you the row number at all times after you save.
Samuel Mueller
Re: Is there a way to add a thin vertical line to a dahsboard?
May not be much help, but I did create a title box and added a "|" to it. It still takes up 6 spaces but it'll work for me for now.
Re: Happy 10th Anniversary Community + Giveaway!
In one sentence I would explain Smartsheet to a newbie as:
Marrying a database and spreadsheet to create a one stop data source for better time management and productivity!
Roxsanne
Re: Happy 10th Anniversary Community + Giveaway!
Smartsheet is a project management platform that helps teams plan, track, and manage projects that functions like a spreadsheet.



