Sign in to join the conversation:
Hi
I don't seem to be able to affix any text to =PARENT()? I want to have each of 6 child rows as:
=PARENT().01
=PARENT().02
=PARENT().03
=PARENT().04
=PARENT().05
=PARENT().06
Any thoughts?
Thanks
Cheers
Richard
You would need to use something along the lines of
=PARENT() + ".01"
Arh, thanks Paul
No worries.
Is there any way to make it self increment for the children under the parent?
and also, i see how you add, how could i remove to do this:
00.00.00 as the parent, and then increment the children below like:
00.00.01, 00.00.02, 00.00.03, 00.00.04. Ie I think you would need to remove the 00 and then replace with 01 and increment from there.
I haven't been able to find a fully automated way. Unfortunately every way I have found thus far requires some manual entry.
I found a way that requires 1 helper column for the first level of Hierarchy and 2 helper columns for every level after that. It does NOT hold up to sorting, but will hold up to the addition/deletion of rows as well as changes to the levels. The published link is below. The formulas are in row 1, row 2 is a buffer, and row 3 starts the actual sheet. If you were to delete rows 1 and 2, you would change any row 3 references to row 1 references ([Column Name]$3 becomes [Column Name]$1).
https://app.smartsheet.com/b/publish?EQBCT=4a032c46788b422db9224632dde79160
Hi Paul
That's brilliant, thanks.
Not wanting to push it! I like to do a preceding '0' on single digit numbers so that all numbers are two digit allowing me to go to 99. Is that something easily achievable. No worries if not, I'll take what you've given me. Much appreciated.
Go ahead and take a look now. Let me know what you think.
Looks good.... apart from where line 10 starts, I would of thought this should be '02.01' and line 14 be '02.02' and line 17 be '03.01' etc...
Good catch. Standby...
Sorry for the delay. We are getting some winter weather here. Anyway... Take another look. I am confident I have it set now...
I have a to do list with parent tasks and children tasks. I have a status column with a dropdown menu with the options “Not started,” “In process,” and “Completed.” I want to have a formula that auto-populates the parent task with the status based on the children tasks. Here is the logic that I want the formula to use: If…
I have a parent row that I'm using to sum all child row values where Children = 0 and Status = "Not Started". This is my formula. =IF(OR(ISBLANK(Status@row ), Hierarchy@row = 0), "", IF(Hierarchy@row = 1, SUM(CHILDREN()), IF(AND(Children@row = 0, Status@row = "Not Started"), 1, 0))) However, if any of my task rows are…
Hi, I am trying to get a column that provides the Date (easy with Record a Date) but I need the TIME as well. Most of my tables I just use the right function on the Modified Date because the only thing updating those tables are automations or data imports. But a few tables have automations, data imports, and manual inputs.…