function copyCell() {
var thisBook = SpreadsheetApp.getActive();
var thisSheet = thisBook.getSheetByName('Filt_N');
thisSheet.getRange(1, 1).getvalue();
}
I want to make a button that will copy the value of a single cell without pasting anywhere. I do not know how to continue this script.
Any help would be appreciated. Thanks!