Hi just a quick easy one, im not very experienced with scripts in sheets. I have my variables set up but i would just like to return the variable to a specific cell when the script is ran. I marked as a comment in the script below what i would like from it. Thanks!
// Menu for testing script
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Record value')
.addItem('Record now','tester')
.addToUi();
}
function tester() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Matt");
var value1 = SpreadsheetApp.getActiveSheet().getRange('L3').getValue();
// i would like to append "value1" to to cell "B3" here
}