Best Of
Re: Help with Formula to Capture Dates for Full 12 Months
Make 3 helper columns that simplify your formula:
- Start Year: =YEAR([Start Date]@row)
- Start Month =MONTH([Start Date]@row)
- Start Day =DAY([Start Date]@row)
then your formula for each of the months is the below, replacing the bolded numbers with the corresponding month (e.g. April would be 4)
=DATE(IF([Start Month]@row > 1, [Start Year]@row + 1, [Start Year]@row), 1, [Start Day]@row)
Re: Celebrating the Community with Smartsheet Swag!
Hello all, that link that was shared to the merch store earlier in this thread is internal and for Smartsheet employees only. Sorry for the confusion, though we of course think of our members as part of the SMAR fam! Good news is that we have plenty of swag plans coming on Community, including this one for Seekers, Contributors and Counselors. Get your forms in, and more to come. π
Alison C.
Re: Is there an easy way to build a report with same order of columns.
This sounds like it would be a great item to submit to the Product Idea page on the Community. Iβve also created many Reports, and like yourself, often struggle when the list of columns is sorted alphabetically instead of the way Iβve intentionally ordered them in a sheet. I donβt think thereβs a workaround for us (other than pulling up the underlying sheet on one monitor and building your report on another, which still requires you choose the lesser of the two evils you describe in your original post).
Lauren Dominique
Re: RYG Formula and Status Question - almost there
Hi @johnna.young,
I think this will do what you're after:
=IF(Status@row = "Complete", "Gray", IF(AND(OR(Status@row = "At Risk", Status@row = "In Progress"), [Target End Date]@row >= TODAY(15)), "Green", IF(AND(OR(Status@row = "At Risk", Status@row = "In Progress"), [Target End Date]@row >= TODAY(4)), "Yellow", IF(AND(OR(Status@row = "At Risk", Status@row = "In Progress"), [Target End Date]@row <= TODAY(3)), "Red", ""))))
Sample:
The only thing it doesn't cope too well with is if you have an At Risk/In Progress status with no target end date - these will show up as Red.
Hope this helps, if you've any problems/questions then just post! π
Re: NEW! Multi-widget editing in dashboards
To confirm, an example would be I can update all my header fonts at the same time? π€
Amanda Winter
Re: I need a sheet summary formula that recognizes Previous quarter and current quarter.
It would be the same as other formulas that tell you the quarter based on a date, but you would replace the date references with TODAY().
Paul Newcome
Re: Why would a formula work on one sheet but be #unparseable on another?
Hi There,
I just figured this out this morning. I did not have the Category column correct.
Thank you for responding,
Lori
Lori C
Re: Automation Deleted, Messages Continue.
Try to check if there's an identical workflow that is causing the alerts. If not, you can raise a support ticket to identify the root cause.
AravindGP
Re: Automation Email Alert Issue - Grouping Notifications with Unique Subjects
Ok @Jeremy W., here's what I did:
I had an "auto number" column in my sheet already, and it counts by one and assigns a new number to each row. What I added for my solution was an Alert ID column that, with a formula, just pulls the right final digit from the auto-number column, so I've ended up with a column that has the single digits 0 thru 9.
Then, in my automations, I simply duplicated my alert 10 times and added a conditional filter to each one to send if the Alert ID is equal to 1, using a different number for each of my duplicated alerts.
I believe this will result in Alerts only being combined if two rows are updated at the same time AND there are 9 rows between the two rows that are being updated. This should greatly reduce the risk of combined alert emails for my specific situation, since I have very few updates happening as the entries age.
If you have a lot of rows being updated daily, you may be able to break them up in a similar way, but using a different identifier that would give you a span 20 or 30.
One drawback is if I need to update the custom message, now I have to do it 10 times. π
Re: Calculating Duration Between Two Dates
So i was able to figure it out using another post on here by using the formula below.
For Net Work Days
=Networkdays([start date]1, [end date]1)
I was using duration and predecessors incorrectly and it was throwing off my sheet. The formula above helped my calculate just the difference in days I was looking for and then it properly calculated on my reference sheet. Thanks for the reply I just figured it out so I'll be closing it out. Β
