I want to count the children rows in another sheet that contain a certain value, my attempt gets an #UNPARSEABLE
=COUNTIF(CHILDREN(){Lease Tracker 2018 Manager},="CORNELIUS"))
Any thoughts? THANKS!
Unfortunately the children function can't be used for referencing another sheet. That said to get the children function to work properly you would need to put the cell you want to count the children of inside the parenthesis.
CHILDREN([CELL])
This link has some helpful information for referencing other sheets. I hope you can find something that works for you!
Paul,
Yes, thank-you! This is exactly my conclusion after sitting here working on this project for some time. I can create some new (hidden) columns since the info is just for me to use for Dashboard metrics. I want to be in a different column and count the children rows that have Cornelius in the manager column. And I will need to do for all of the other managers. I've been sitting here trying to figure out how to create the formula but I haven't had any success. I was trying COUNTIF(CHILDREN(), ="Cornelius") ... but not sure how to reference the Manager Column. Any thoughts?
Thanks for responding!
Happy to help!
Currently, we don’t have a method to utilize the CHILDREN function in a Cross-Sheet Formula but this will be considered as a possibility for future development.
You may be able to achieve your desired goal a couple of ways.
1. You can, instead of utilizing a CHILDREN Function, reference the desired range of cells on the other sheet. You can achieve this by selecting on the column header of the desired sheet, or by selecting the first cell and the last cell of the desired range.
2. Create the COUNTIF on the Origin sheet then on the Destination sheet reference the cell containing this formula, utilizing Cell Linking: https://help.smartsheet.com/articles/861579-cell-linking
The Origin sheet Formula could look like this:
=COUNTIF(CHILDREN([Desired Parent Rows Column Name Delete If In Parent Row]13), "CORNELIUS")
Cheers, Eric
Smartsheet Support
Hi all, and thanks in advance! I wanted to know if there was any way to create "padding" in Smartsheet. Basically I have account numbers, and a handful are still 2-digit, so they appear as TDL-17, TDL-67, etc. Most of the accounts are 3-digit numbers like TDL-180. I want something that will recognize whether it is 2 or 3…
I'm wondering if anyone has worked out a dynamic formula to return the date of the 'next' Thursday of the month. I have a worksheet where I need to send out a reminder to a contacts in a contact column in the worksheet each Thursday of the current month if a criteria has not been met. When criteria has been met, then…
Hello, I have the formula to check a box for line items with the current month. =IF(AND(YEAR(Date@row ) = YEAR(TODAY()), MONTH(Date@row ) = MONTH(TODAY())), 1, 0) Trying to set up a report for all items with the previous month (i.e. 1 month prior to current). How can I modify to check the box?