Best Of
Re: SUMIF formula not working in Sheet Summary
Hi @Esquared213
Lets try two different formulas to determine where it's having trouble:
=SUM([Annual Revenue]:[Annual Revenue])
and
=COUNTIFS([Fiscal Year]:[Fiscal Year], 2023)
These should both return a number. If one of them is giving you an error or incorrect result, this will help us narrow down where it's getting stuck!
Genevieve P.
Re: Dashboard & Chart Widgets
The TODAY() function does not update on its own unless the sheet is somehow activated. The easiest way to have the sheet automatically activated and saved to update the TODAY() function without you having to maintain anything would be to insert a date type column and then set up a Record a Date automation triggered daily and set to run at 12:00am with a condition of where the new date type column is blank or is not blank.
This will force update the TODAY() function to ensure your INDEX functions properly without you having to ever touch this sheet again.
Paul Newcome
Re: Circular Reference with Vlookup (Works in Excel)
Is there a reason you are doing it this way instead of turning on the dependencies within the sheet?
Paul Newcome
Re: Help with IF statement with INDEX MATCH
Great! I also use IFERROR when indexing reason is the #NO MATCH is set by SS and we do not know what value they are using to set it. So when you have #NO MATCH it also prevents you from using conditional formatting. We use a lot of indexing to update over 700 Pharmacy Sites in tons of sheets and when a site closes it is removed from our Reference API so it cannot match the site # once it is removed I get the #NO MATCH so I set the " " or "Site Closed" or "VACANT" as the value if False.
Re: Resource Management - "Phase Names" account setting not working
The phase defaults that you set up in Account Settings (your first screen capture) will show up as a drop down list in the Schedule tab on the Project page:
Please feel free to submit your feedback to the Product team by creating an Idea Post in the Smartsheet Product Feedback and Ideas topic here in the Community.
Cheers,
Genevieve
Genevieve P.
Re: Is there a way to conditionally copy the value of one cell to another?
Hi @Jim Kiltie
I would add the Row ID auto number column and the Parent Row ID helper columns for this solution.😀
How to fix your formula
Then, the LastNum formula becomes like this;
="0" + MATCH([Row ID]@row, COLLECT([Row ID]:[Row ID], [Parent ID]:[Parent ID], [Parent ID]@row), 0)
You want to use the zero padding numbering system like 01, 02, 03 instead of 1,2,3. In that case, it would be easier to do the padding here.
Then, the IDNum formula becomes like this.
=JOIN(ANCESTORS([Last Num]@row), "-") + IF(COUNT(ANCESTORS()) > 0, "-", "") + [Last Num]@row
Using ANCESTORS, you can cope with more than three level cases, like Parent, Child, and Grandchild.
Using IF(COUNT(ANCESTORS()) > 0, "-", "") removes the unnecessary delimiter at the top row.
You could use delimeter# instead of "-" if you use the Sheet Summary fields. (See at the bottom.)
More standard ways for auto-numbering
Please find more standard ways for auto-numbering on the right-hand side of the published demo sheet.
The difference between the fixed and dynamic is if you move the rows in a children group, the fixed one keeps the same Last Num or Self in my demo. In contrast, the dynamic one changes the Last Num depending on the relative position of the row in the same children group.
The formula for the "Self Dynamic" column is the same as for "LastNum." The "Self Fixed" uses the RANKEQ function instead of the MATCH function to get the absolute position of the row among the same children group.
You can specify the Prefix and delimiter in the Sheet Summary and call in the sheet cell formula as [filed name]#, delimiter#, for example.
By using the Sheet Summary, you can change those values dynamically.
Re: Formula Help Needed: To populate unlimited level of children row with Parent data
@Vivien Chong, if you've still got the level column then yes, we can amend the formula slightly to get round this.
If you call your "testing 1" type task level 0, then:
=IF(Level@row <= 1, [Ep Number]@row, PARENT([Ep No]@row))
Sample:
Obviously if your level number system is slightly different then you will need to amend the number in the formula but hopefully this gives you the gist of what to do - let me know if there are any other issues. 🙂
Re: Two cells, one is $$
I would suggest creating a row report pulling from the sheet that is grouped by service type then use the summary feature within the report to get your totals which can then be used for your chart.
Saves from having to use formulas and separate sheets and whatnot.
Paul Newcome
Re: Simple Addition
Hi,
Try using =SUM and the rows.
Also you might want to download the formula handbook it is a huge help. You can find examples of using SUM and the link to the handbook in this article : https://help.smartsheet.com/function/sum
Marlana
Re: Formula to split text into columns
@MichelleBohn Looks like @Kelly Moore beat me to it :) :)
I have access to the SS early adopter Generative AI so I thought I'd test this request using the following wording: Extract the text between the second and third \
Worked flawlessly but it doesn't show you the formula, which would be nice to have but I guess that is the way it's going, similar to functions in Excel that do the work for you. However, I like puzzles like these formulas.
Thank you, Kelly!



