Sign in to join the conversation:
Is there a way to remove sub-rows from formula tracking? Ex: We want to track the general Task but not the detailed items below that task.
Can we do this with a formula and generate a single metric number?
Thanks for all the help!
Yes - and there are a couple of ways to do this.
Easiest? That depends on what you're trying to accomplish. If you just want to exclude all sub-rows, then I suggest something like what I've shown in this screenshot (count the children, if it's zero than it's a sub-row).
If you need finer control over it, I've also had success by creating a column called "Level" and Counting the number of ancestors. That gives you a numeric value for how many levels indented a row is, and you can use that number for conditional formatting, or picking only the levels you care about for reports / formulas.
Hi Sarah,
To add to Corey's excellent advice. Here's another formula that combines all in one.
I use this one all the time in my client solutions. I name the column Level and use that to simplify conditional formatting and more.
Try something like this.
=IF(COUNT(CHILDREN([Task Name]@row)) > 0; COUNT(ANCESTORS()) + 1)
The same version but with the below changes for your and others convenience.
=IF(COUNT(CHILDREN([Task Name]@row)) > 0, COUNT(ANCESTORS()) + 1)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma."
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
I frequently receive Microsoft Excel files which are then uploaded to a row in Smartsheet along with other files. I can view Word docs and PDF's simply by clicking the file in the Attachment window. If I click an Excel file (for which I see an Excel Icon) I get an error screen saying "can't open plugin" How can I fix this…
i am not sure I am calling this the right thing, but my manager has asked if there is a way in a dashboard to click on a graph and bring up a definition box for the different types of process improvements. Would I just create that in Smartsheet and then choose open a Smartsheet item?
When a customer used to fill on one of the forms, after its submitted I used to show a thankyou message and also have a hyperlink in there which takes you to another smartsheet file. This has worked for 12 months but now stopped working and just the html shows on the screen. See screenshot of where I mean and below is the…