Excluding Parent Row From Auto Populating System Data

Options
Sinema
Sinema ✭✭
edited 12/09/19 in Smartsheet Basics

Greetings,

I'm trying to exclude my parent rows from auto populating my Status and all my Modified By and Created By data.

Is this possible?

I tried adding - into the fields that I could, and nothing happened. 

Comments

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Options

    Modified and Created type columns are not able to be edited or overwritten. Either they are there for EVERY row or no rows.

     

    One workaround though would be to create another Helper column of the date type and use the formula

     

    =IF(COUNT(CHILDREN()) = 0, Modified@row)

    or

    =IF(COUNT(CHILDREN()) = 0, Created@row)

     

    to pull the date from the original column if the row has no child rows (meaning it is not a parent row).

     

    This will only pull the date though.