Is it possible to set Notes with automatically inserted values using google sheets?

蓝咒 提交于 2020-02-02 11:27:26

问题


I was trying to figure out a way to insert Notes automatically, when i enter something in a specific cell. This thread was suggested to me and tried it out: https://support.google.com/docs/thread/13317657?hl=en. I changed the function mentioned a littlebit, to fit my project:

function onEdit(e) {
  if(e.source.getActiveSheet().getName() === 'Testsheet') { 
    if(e.range.columnStart === 8 && (e.range.rowStart > 12 && e.range.rowStart < 21)) {
        return e.range.offset(0, -6).setNote(e.value);  
      }
    }
  }

This way when I enter values in the range H13:H20, the same values get inserted as Notes on the corresponding (0, -6) offset cells. Which is a step in the right direction, but not yet what I'm truly trying to achieve. The problem is, this only works, when the values are entered manually. But for my project, I need the notes also to be set, when values are filled in automatically, using a function that fills in certain information in a row, depending on the selected dropdown choice.

In my sheet for example:

=if(B17="Test1",Testsheet!C10:Testsheet!H10) When the Information is filled in that way, it doesn't give me the Note in the offset cell. Is there a way, so that it does?

Here is a link to my Testsheet, where you can see what I'm trying to do : https://docs.google.com/spreadsheets/d/16c2hVDM_FTnHWerKjnOauCopwVZSnKCwAMVi6-Z8vBo/edit?usp=sharing

Thanks for any tips and help in advance!


回答1:


As you can see in the documentation:

Script executions and API requests do not cause triggers to run. For example, calling Range.setValue() to edit a cell does not cause the spreadsheet's onEdit trigger to run.

The only option would be to directly run the notes function with the values as parameter instead of inserting the "row 16" values, as updating the sheet by a script or formula won't trigger the function onEdit().



来源:https://stackoverflow.com/questions/58692892/is-it-possible-to-set-notes-with-automatically-inserted-values-using-google-shee

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!