Write a formula that checks whether or not the cell is in a parent row, then performs the following
Write a formula that checks whether or not the cell is in a parent row, then performs the following calculation based on this information:
If a task has children, sum the children.
If a task has no children, subtract [Extra Column] from [Status].
Write the formula in the [Numbers] parent row, then drag the formula down to apply it to all the children rows.
Calculation Based on Hierarchy Position.
Answers
-
Try something like this:
=IF(COUNT(CHILDREN()) = 0, Status@row - [Extra Column]@row, SUM(CHILDREN()))
You should be able to convert this into a column formula instead of having to dragfill.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!