Best Of
Re: Extract text and turn into hyper link
There is no way to get the display set as something different than the URL itself using formulas, but the API, the premium add-on Bridge, or other third party apps are able to do that.

Re: Record the remaining days on a project
Try something like this:
=IF([End Date]@row < TODAY(), "In the past", IF([Start Date]@row > TODAY(), NETWORKDAYS([Start Date]@row, [End Date]@row), NETWORKDAYS(TODAY(), [End Date]@row)))
This will return:
- "In the past" for anything that has an End Date in the past (can change to 0, or blank)
- The number of working days between the start/end for anything starting in the future
- The number of days remaining for anything that has already started and the end date is in the future.

Re: Introducing the newest Community Champions! π [January 2025]
wowwowowow that is some seriously amazing artwork and Smartsheet creativity @Protonsponge - certainly got some amazing tricks to learn from you there π

Re: countifs for three separate things
That works thanks you very much, I tried so many different thing and something as simple as forgetting to take the 1 out!

Re: COUNTIF formula between date range
Should that last one be greater than or equal to 2001 instead of less than or equal to?

Re: COUNTIF formula between date range
I didn't even notice that error. I fixed it, my bad! Silly mistake. Thanks for pointing it out, Paul! π

Re: #INVALID VALUE with date formula
Try these insteadβ¦
QC (also accounts for going into the next year):
=IFERROR(DATE(YEAR([Date Initiated]@row), MONTH([Date Initiated]@row) + 1, DAY([Date Initiated]@row)), DATE(YEAR([Date Initiated]@row) + 1, 1, DAY([Date Initiated]@row)))
QA:
=[Date Due (QC Conclusion)]@row + 15

Re: Introducing the newest Community Champions! π [January 2025]
Aww, congratulations Champions! Let those feelings of excitement truly sink in⦠you deserve this! Welcome to the club!

Re: Conditional Formatting on Multiple Sheets
Hello @Lisa McMunn
Try this:
- Create a helper column (for example checkbox "Training Done" column) on your Associate Information Sheet
- Add this formula:
- =IF(HAS({Badge # Column in Training Tracker Sheet},[Badge #]@row),1,0)
This will check a row where the Badge # in the Associate Information sheet is found in the Training Tracker. Just make sure to change the correct references in the formula.
