Autolock Google Sheets cells after the first entry












0















I'm trying to use Google Sheets as a sales register for my business. However, there is a specific detail I'd like to configure about the input of information, but couldn't sort it out yet.



I created a table where you enter all the information (such as the date, item sold, total amount, etc.). Everything works perfectly with the table. However, I would like it to automatically prevent any changes to the information in any cell, right after said information has been entered. Let's say someone puts a quantity, then chooses another cell and tries to change the quantity again, but can't due to the protection.



I found some information about autolock at a certain time here: Locking cells in Google Sheets at a specific time but that's not what I need. Also, I'm a beginner and I think some things have changed in Google Sheets because I couldn't make it work, even with the lock by time. I would really appreciate any help you can offer.










share|improve this question



























    0















    I'm trying to use Google Sheets as a sales register for my business. However, there is a specific detail I'd like to configure about the input of information, but couldn't sort it out yet.



    I created a table where you enter all the information (such as the date, item sold, total amount, etc.). Everything works perfectly with the table. However, I would like it to automatically prevent any changes to the information in any cell, right after said information has been entered. Let's say someone puts a quantity, then chooses another cell and tries to change the quantity again, but can't due to the protection.



    I found some information about autolock at a certain time here: Locking cells in Google Sheets at a specific time but that's not what I need. Also, I'm a beginner and I think some things have changed in Google Sheets because I couldn't make it work, even with the lock by time. I would really appreciate any help you can offer.










    share|improve this question

























      0












      0








      0








      I'm trying to use Google Sheets as a sales register for my business. However, there is a specific detail I'd like to configure about the input of information, but couldn't sort it out yet.



      I created a table where you enter all the information (such as the date, item sold, total amount, etc.). Everything works perfectly with the table. However, I would like it to automatically prevent any changes to the information in any cell, right after said information has been entered. Let's say someone puts a quantity, then chooses another cell and tries to change the quantity again, but can't due to the protection.



      I found some information about autolock at a certain time here: Locking cells in Google Sheets at a specific time but that's not what I need. Also, I'm a beginner and I think some things have changed in Google Sheets because I couldn't make it work, even with the lock by time. I would really appreciate any help you can offer.










      share|improve this question














      I'm trying to use Google Sheets as a sales register for my business. However, there is a specific detail I'd like to configure about the input of information, but couldn't sort it out yet.



      I created a table where you enter all the information (such as the date, item sold, total amount, etc.). Everything works perfectly with the table. However, I would like it to automatically prevent any changes to the information in any cell, right after said information has been entered. Let's say someone puts a quantity, then chooses another cell and tries to change the quantity again, but can't due to the protection.



      I found some information about autolock at a certain time here: Locking cells in Google Sheets at a specific time but that's not what I need. Also, I'm a beginner and I think some things have changed in Google Sheets because I couldn't make it work, even with the lock by time. I would really appreciate any help you can offer.







      google-sheets google-sheets-formula






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 at 23:53









      MarkMark

      1




      1
























          1 Answer
          1






          active

          oldest

          votes


















          0














          You could try installing an on edit trigger for the below code.



          It will remove all editors (except for the user that installs the trigger and the owner of the sheet) from any and all edited ranges. It will also add a description to the protection so you'll know when it was done.



          function protectOnEdit(event) {

          var range = event.range;
          var timeZone = Session.getScriptTimeZone();
          var stringDate = Utilities.formatDate(new Date(), timeZone, 'dd/MM/yy HH:mm');
          var description = 'Protected on ' + stringDate;
          var protection = range.protect().setDescription(description);

          // below code taken directly from Google's documentation (second comment is my own):

          // Ensure the current user is an editor before removing others. Otherwise, if the user's edit
          // permission comes from a group, the script throws an exception upon removing the group.

          var me = Session.getEffectiveUser();
          //user who installed trigger

          protection.addEditor(me);
          protection.removeEditors(protection.getEditors());
          if (protection.canDomainEdit()) {
          protection.setDomainEdit(false);
          }
          }


          Reference






          share|improve this answer


























          • Thank you, I'll give it a try

            – Mark
            Jan 4 at 22:14











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999853%2fautolock-google-sheets-cells-after-the-first-entry%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You could try installing an on edit trigger for the below code.



          It will remove all editors (except for the user that installs the trigger and the owner of the sheet) from any and all edited ranges. It will also add a description to the protection so you'll know when it was done.



          function protectOnEdit(event) {

          var range = event.range;
          var timeZone = Session.getScriptTimeZone();
          var stringDate = Utilities.formatDate(new Date(), timeZone, 'dd/MM/yy HH:mm');
          var description = 'Protected on ' + stringDate;
          var protection = range.protect().setDescription(description);

          // below code taken directly from Google's documentation (second comment is my own):

          // Ensure the current user is an editor before removing others. Otherwise, if the user's edit
          // permission comes from a group, the script throws an exception upon removing the group.

          var me = Session.getEffectiveUser();
          //user who installed trigger

          protection.addEditor(me);
          protection.removeEditors(protection.getEditors());
          if (protection.canDomainEdit()) {
          protection.setDomainEdit(false);
          }
          }


          Reference






          share|improve this answer


























          • Thank you, I'll give it a try

            – Mark
            Jan 4 at 22:14
















          0














          You could try installing an on edit trigger for the below code.



          It will remove all editors (except for the user that installs the trigger and the owner of the sheet) from any and all edited ranges. It will also add a description to the protection so you'll know when it was done.



          function protectOnEdit(event) {

          var range = event.range;
          var timeZone = Session.getScriptTimeZone();
          var stringDate = Utilities.formatDate(new Date(), timeZone, 'dd/MM/yy HH:mm');
          var description = 'Protected on ' + stringDate;
          var protection = range.protect().setDescription(description);

          // below code taken directly from Google's documentation (second comment is my own):

          // Ensure the current user is an editor before removing others. Otherwise, if the user's edit
          // permission comes from a group, the script throws an exception upon removing the group.

          var me = Session.getEffectiveUser();
          //user who installed trigger

          protection.addEditor(me);
          protection.removeEditors(protection.getEditors());
          if (protection.canDomainEdit()) {
          protection.setDomainEdit(false);
          }
          }


          Reference






          share|improve this answer


























          • Thank you, I'll give it a try

            – Mark
            Jan 4 at 22:14














          0












          0








          0







          You could try installing an on edit trigger for the below code.



          It will remove all editors (except for the user that installs the trigger and the owner of the sheet) from any and all edited ranges. It will also add a description to the protection so you'll know when it was done.



          function protectOnEdit(event) {

          var range = event.range;
          var timeZone = Session.getScriptTimeZone();
          var stringDate = Utilities.formatDate(new Date(), timeZone, 'dd/MM/yy HH:mm');
          var description = 'Protected on ' + stringDate;
          var protection = range.protect().setDescription(description);

          // below code taken directly from Google's documentation (second comment is my own):

          // Ensure the current user is an editor before removing others. Otherwise, if the user's edit
          // permission comes from a group, the script throws an exception upon removing the group.

          var me = Session.getEffectiveUser();
          //user who installed trigger

          protection.addEditor(me);
          protection.removeEditors(protection.getEditors());
          if (protection.canDomainEdit()) {
          protection.setDomainEdit(false);
          }
          }


          Reference






          share|improve this answer















          You could try installing an on edit trigger for the below code.



          It will remove all editors (except for the user that installs the trigger and the owner of the sheet) from any and all edited ranges. It will also add a description to the protection so you'll know when it was done.



          function protectOnEdit(event) {

          var range = event.range;
          var timeZone = Session.getScriptTimeZone();
          var stringDate = Utilities.formatDate(new Date(), timeZone, 'dd/MM/yy HH:mm');
          var description = 'Protected on ' + stringDate;
          var protection = range.protect().setDescription(description);

          // below code taken directly from Google's documentation (second comment is my own):

          // Ensure the current user is an editor before removing others. Otherwise, if the user's edit
          // permission comes from a group, the script throws an exception upon removing the group.

          var me = Session.getEffectiveUser();
          //user who installed trigger

          protection.addEditor(me);
          protection.removeEditors(protection.getEditors());
          if (protection.canDomainEdit()) {
          protection.setDomainEdit(false);
          }
          }


          Reference







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 2 at 8:24

























          answered Jan 2 at 8:02









          s1c0j1s1c0j1

          9561617




          9561617













          • Thank you, I'll give it a try

            – Mark
            Jan 4 at 22:14



















          • Thank you, I'll give it a try

            – Mark
            Jan 4 at 22:14

















          Thank you, I'll give it a try

          – Mark
          Jan 4 at 22:14





          Thank you, I'll give it a try

          – Mark
          Jan 4 at 22:14




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999853%2fautolock-google-sheets-cells-after-the-first-entry%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter