Best Of
Re: Share Dashboard
Ahh, very interesting. Thanks for clarifying this. In this case, I do believe the students would need to make a Smartsheet account, or else Smartsheet would not know how to match them to the Contact column in order to display the rows of the current user.
To your second question: When you share a Dashboard with someone, they can only see the data presented in a widget if they have access to an underlying report. Otherwise, they would see this message for any widget to which they don't have at least viewer access to the source sheet:
One way around this may be to create a Dashboard with a filter (unfortunately this is where my expertise ends - I only recently learned about this at ENGAGE 2023 and have not yet had a chance to dig into how it's done and implement it in my dashboards). But, from what I saw, I do believe this could be a viable solution for what you need to do. If I recall correctly from the demo session I attended at ENGAGE, the filtered dashboard uses a form to select the filter. So, you'd have a form of all your students names, and the data displayed on the dashboard would change based on which student is selected (so, it would sort of work like your "current user" view, except the students wouldn't have to have a Smartsheet account to view their data). I know the demo also included a title field so you could see what filter was applied to the dashboard, so that would solve your need for wanting the name of the student at the top of their view.
If this works the way I think it would, I believe you could still publish the Dashboard in "View Only" mode, thus saving your students from having to make a Smartsheet account, and not have to share them to all the underlying sheets. The potential downside would be if there is sensitive student information on the dashboard, because there would really be nothing stopping Student #1 from selecting the filter to view Student #2's data.
I'm sorry I can't walk you through the details of filtering on dashboards, but there should be a recording from ENGAGE or you may be able to find someone else on here with that expertise.
Lauren Dominique
Re: TODAY Function randomly stopped working in my Summary Metric formulas, how do I fix?
@jkt2001,
I would check all the ranges being used as criteria and ensure all the data is in the format expected.
DKazatsky2
Re: Ready, set, share your solution! 🚀 Showcase your skills for a chance to win unique prizes.
A big thank you to everyone who shared their creativity and solutions with us. Keep an eye out for participant, winner, runner-up and published solution badges headed your way.
Congrats to our Community Created Template Showcase winners: @Michelle Choate 2, Nicholas Miron, and @Lauren Dominique, as well as our runner-ups who will also have their solution featured in the template gallery: @TWO21 , @DesireeJones , and @MCorbin.
Arsineh
Re: How to use Document Builder when some fields have lots of text?
I agree with Nat, this is more an adobe question than a Smartsheet question. Document builder allows you to map columns to a fillable form. If adobe acrobat could dynamically expand/contract the field size then Smartsheet could likely populate the fields.
Depending on how many dynamic fields you have, it could be a viable option to upload multiple versions of the fillable pdf. Then a column formula could calculate length of text and trigger the appropriate document template using conditional paths.
Re: Sorting a report with multiple criteria
Hi Karen,
Here is a help article regarding sorting in reports. It sounds like you would like to sort items in a custom order, not alphanumeric ascending or descending. Unfortunately this isn't supported at this time. One common approach for implementing a custom sort order is to add a numeric prefix to status values, i.e., "1 - New", "2 - Open", "3 - Closed", "4 - On Hold".
If you would like to see a custom sort feature implemented then I recommend you submit product feedback so the development team is aware this is a common desired feature. Here is a help article with more information on providing product feedback. There is also a Product Ideas forum for discussing your ideas with other users.
Best,
Sal
Re: Collect formula for child rows
@Dhoke When you are referencing a column name that has spaces, numbers, and/or special characters, the column name has to be wrapped in [square brackets].
=COUNTIF(DESCENADANTS([Report Status]@row), "In Progress")
Paul Newcome
Re: Make fields required in update request workflows
Totally agree, Medical Industry here and we need to be able to set "required" to the fields that are requested for updates from the doctors. I have a 2 section form, Nurse fills out the top of it (which has required fields), and the doctor is suppose to fill out the bottom section. The automation kicks it to the Doctor's once the nurse is done. However I can't make the Doctor's field's required, because it would mean the nurse would have to fill it out. The problem we run into is the Doctors are not filling everything out that is needed. Out of 700 entries I reviewed, over 250 were still pending for updates of some sort because I can't make their fields "required" on the form, so data ends up missing. It is so much work to have to follow up directly for each entry. This feature is greatly needed!!!
Kari G
Re: How Do I Generate a Metrics in Dashboard Displaying a % Difference for Various Months for Two #'s
That's because you have an IF statement in there without it's various arguments. Get rid of the IF and you should see the result you're looking for. You can wrap it in an IFERROR statement if you want to remove errors like DIVIDE BY ZERO.
=IFERROR(([Column 9]32-[Column 9]28)/[Column 9]28,"")
Or if you want to use IF to check for things like 0 values like you have on your archive sheet, you need to finish the IF statement. Like
=IFERROR(IF(([Column 9]32-[Column 9]28)/[Column 9]28 =0, "", ([Column 9]32-[Column 9]28)/[Column 9]28) ,"")
Brian_Richardson
Re: Do leading zeroes affect "duplicate flag" formulas?
Leading zeros will affect this because that changes it from numerical data to a text string. Now you have two different data types within the range, and that throws the COUNTIFS off every time.
Insert a helper column (can be hidden after setting up) and use this to convert every row into a text string.
=[ID Number]@row + ""
plus quote quote
Then reference this helper column in your COUNTIFS.
Paul Newcome
Re: Do leading zeroes affect "duplicate flag" formulas?
Try an @cell reference in your COUNTIFS.
=IF(COUNTIFS([Column Name]:[Column Name], @cell = [Column Name]@row)> 1, 1)
Paul Newcome
