Simple problem that most likely has a simple solution.
Created a custom menu with 1 function. Now I want to be able to have this custom menu appear in all G sheets. I create a new spreadsheet everyday in Excel and move it to G Drive so that it can be viewed/shared with the whole team. When this new spreadsheet is added to the drive, I want the custom menu to show up so that the one function can be ran to clean up this daily rotating document.
How do I make this custom menu appear in all sheets: new, old, uploaded? I will note this App Script is tide to a
function onOpen(){
var ui = SpreadsheetApp.getUi();
ui.createMenu('Deluxe List Edit')
.addItem('Prep deluxe list','deluxeFinish')
.addToUi();
}
function deluxeFinish(){
// code that edits the first sheet//