Know when someone last changed a Cell in Sheets

Поделиться
HTML-код
  • Опубликовано: 30 ноя 2024

Комментарии • 11

  • @JamesAbela
    @JamesAbela 3 месяца назад +1

    Love how you are getting into app scripts!

    • @FlippedClassroomTutorials
      @FlippedClassroomTutorials  3 месяца назад +1

      It was really in response to a question. Sadly, these videos don't have the same interest or views as others, but I know it's a useful trick to get those trackers working and looking great!

  • @danteshier5214
    @danteshier5214 12 дней назад

    Is there a way to send the onEdit to a specific Column/Row?
    For instance I would like to have it always update on Column H as I may update info on Column B through G. While the Offset I can make work, it's not optimal for my current project.

  • @gaanpakhi4635
    @gaanpakhi4635 27 дней назад

    1. If a cell contains a formula and the feeding cells to that formula change, then the cell auto-updates. why doesn't this code capture that? is there a way to tweak the code so it does?
    2. I would like to have the time stamp of whenever anything in that entire sheet was updated into one single cell - not individual cell updates. (i am maintaining stock of a service centre in a sheet and want to know the last date of stock update, not particularly interested in which individual cells were updated) how do i do that?

    • @miatownend
      @miatownend 7 дней назад

      type =now() into a cell

  • @limitlessdev
    @limitlessdev Месяц назад

    can we make it into a stopwatch stye so I can have an if function that tells the cell to turn N/A every 2 months

  • @hermanjohnson2105
    @hermanjohnson2105 2 месяца назад

    If you just need to check when a specific cell in a spreadsheet was last edited you can just right click the cell and select history and it will tell you all the edits and time of that cell.

    • @FlippedClassroomTutorials
      @FlippedClassroomTutorials  2 месяца назад

      Revision history is helpful, and what makes it all work. But this is a way of having these updates visually there as part of the file rather than manually checking :-)

  • @justsayjoe9634
    @justsayjoe9634 3 месяца назад

    Also, what if I want to check all the cells of a row to see if any of them were updated, and have that last modified date land in the same column every time?

    • @nadavziv2868
      @nadavziv2868 14 дней назад

      assuming my "last Edit" is on Column I, I changed the last row in the code to:
      rangeModified.offset(0,(9-rangeModified.getColumn())).setValue(new Date)

  • @justsayjoe9634
    @justsayjoe9634 3 месяца назад

    Are you able to also add a column next to the Last Edit, with the User who performed that last edit? Say it's a shared Google Sheet.