Best Of
Re: Is there a way to add a thin vertical line to a dahsboard?
Here are a few I modified from the many sites i downloaded from. Feel free to just open them up in your Photos/Paint Program and change the colors / size / rotations to your needs.
Here is one of many sites you can grab them from (limited free with no login or +10 w/ google login)
Web Dividers transparent vectors, photos and PSD files | Free download
Here are a few i threw on a dashboard with duplicated widgets so you can see them in action. Keep in mind, when stretching your dividers you have to play with their fit and their img sizes. I found that for a horizontal divider to span the entire page neatly was 6000x10. However, the ones i attached also worked for partial spans, but you can create these in powerpoint, or download your own and modify to your needs.
Julie Becker
Re: How to add a hyperlink to a form field?
@Joe Phelps My pleasure ! I even fixed mine ! :P
And after all my tests, it works better with the HEADING element. This way, you don't have extra columns for nothing in your database.
Don't forget to put a note in your form next to CLICK HERE reminding them to come back to complete the form.
Re: Increase Bridge Run Log Entry Limit / Update Error Prompt
Hi all,
The run log limit has been increased to 20MB!
Cheers,
Genevieve
Genevieve P.
Re: What column type is required to use MONTH to return number of new lines in a certain month?
Hello @CatB
It looked like your Date column has either an empty cell or a non-date value so you need to account it using an IFERROR function. Since having either an empty cell or a non-date value will throw an error and that causes the #INVALID DATA TYPE error message.
Try this:
=COUNTIF([Date Opened]:[Date Opened], IFERROR(MONTH(@cell ), 0) = 1)
Melissa Yamada
Re: formula to show month and year based off a date xx/xx/xx
Yes, we can create a text field that appears in the format you described. Your mo/yr column should be formatted a text/number column
If the leading zero for the month isn't important, the equation is:
=MONTH([receipt date]@row) + "/" + RIGHT(YEAR([receipt date]@row), 2)
*be sure I got the name of your date field correct
If the leading zero of the Month is important, then this formula should work
=IF(LEN(MONTH([receipt date]@row)) = 2, MONTH([receipt date]@row) + "/" + RIGHT(YEAR([receipt date]@row[receipt date]@row), 2), "0" + MONTH([receipt date]@row) + "/" + RIGHT(YEAR([receipt date]@row), 2))
If you want the year to be 4 characters then omit the Right function.
=MONTH([receipt date]@row) + "/" + YEAR([receipt date]@row)
cheers,
Kelly
Kelly Moore
Re: March Question of the Month - Join the conversation and receive a badge
I would like to improve my guitar skills. I've been playing for many years, but I'm still very much a chord strummer. I can play difficult things when I sit down and apply myself. I'd like to apply myself more often so that if I'm invited to jam with others, I can carry my part without hesitation.
Emmett Tomkinson
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




