Please share the Formula to Capture Creation Date for Rows in smartsheet.

Bella_Love
Bella_Love ✭✭
edited 04/02/24 in Smartsheet Basics

myself and my teammates are am using two separate sheet with data on each every week. I want a formula to enter that tells me the date of the last entry . How can I do this?

Best Answer

  • KPH
    KPH Community Champion
    edited 04/01/24 Answer βœ“

    Step 1 - Record the date of each entry

    Option 1 - Use an automation

    Use the Automations option at the top of your sheet.

    Trigger is when rows are added.

    Action is record a date - just select the column to put the date in.

    User: "Screen Shot 2024-03-31 at 18.47.03.png"

    Option 2 - Use the system generated created date column

    Add a column to your sheet.

    Select the column type - created date.

    Save the sheet.

    User: "Screen Shot 2024-03-31 at 18.49.08.png"

    Step 2 - Formula to find the latest date in the sheet

    This formula would give you the latest date in the column "Created" in the current sheet.

    =MAX(Created:Created)

    Do you want to find the latest date in both sheets?

Answers

  • KPH
    KPH Community Champion
    edited 04/01/24 Answer βœ“

    Step 1 - Record the date of each entry

    Option 1 - Use an automation

    Use the Automations option at the top of your sheet.

    Trigger is when rows are added.

    Action is record a date - just select the column to put the date in.

    User: "Screen Shot 2024-03-31 at 18.47.03.png"

    Option 2 - Use the system generated created date column

    Add a column to your sheet.

    Select the column type - created date.

    Save the sheet.

    User: "Screen Shot 2024-03-31 at 18.49.08.png"

    Step 2 - Formula to find the latest date in the sheet

    This formula would give you the latest date in the column "Created" in the current sheet.

    =MAX(Created:Created)

    Do you want to find the latest date in both sheets?

  • Bella_Love
    Bella_Love ✭✭

    Yes, I want to find the latest date in both sheets.

  • KPH
    KPH Community Champion

    If you specify both columns within the same MAX formula you will find the latest date no matter which sheet it is on. You will need to use cross sheet references, for at least one column.

    The formula will look something like this:

    =MAX({date column on sheet 1},{date column on sheet 2})

  • bkw1962
    bkw1962 ✭✭✭

    @KPH your option 2 is not a possible solution. Users cannot choose "Created Date" as a column type as it is System-defined and the column is created for you automatically.

  • KPH
    KPH Community Champion

    Hi @bkw1962

    As a smartsheet user, you can choose "Created Date" as a column type. It is one of the last options in the list.

    image.png

    This system column will be automatically populated with the date and time the row is added and can be very useful.

    For Bella, if she wants to know when a row is added to a sheet, adding the column with the type "Created date" will add a column that is automatically populated with data each time a row is added. She can then use this column in her formula.

  • bkw1962
    bkw1962 ✭✭✭

    Only partially correct. You cannot create a column with the Created Date type if one already exists in your sheet.