Hi,
I have a sheet that has a number of parent items, and each parent has a list of its own children, this sheet also has a Number column. At the moment the use has to fill in the number automatically (i.e. 1,2,3, etc).
I wanted to have a column formula where any task added as a child task for a particular parent task will be numbered at an increment of 1.
Something like:
=IF(HAS([Description]@Row, PARENT()), Parent([No])+1, "")
Issues are:
- This is unparseable
- That would only work for the first child item, but not for the remaining
Any ideas would help.
Thank you.