Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

Count # of Parent Rows in a Sheet

This seems like such an elementary question but I keep going around and around on this and I can't find what I'm doing wrong. I'm trying to count the number of parent rows in the sheet (each parent row represents an "Employee Name"); I want to include this count in the sheet summary but I can't seem to figure it out. This is what I'm using:

=COUNT(PARENT([Employee Name]))

Best Answer

  • ✭✭✭
    edited 12/14/23 Answer ✓

    The workaround I have used is to create a helper column to count ancestors. You could also choose to count descendants instead.

    =count(ancestors([Employee Name]@row)

    Make it column formula. Then in your sheet summary:

    =countif([Ancestors]:[Ancestors], = 0)

    Hope this helps

Answers

  • ✭✭✭
    edited 12/14/23 Answer ✓

    The workaround I have used is to create a helper column to count ancestors. You could also choose to count descendants instead.

    =count(ancestors([Employee Name]@row)

    Make it column formula. Then in your sheet summary:

    =countif([Ancestors]:[Ancestors], = 0)

    Hope this helps

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions