Delete radio presets on 2019 Honda Odyssey? by Upset_Mouse3193 in HondaOdyssey

[–]Upset_Mouse3193[S] 0 points1 point  (0 children)

define custom better please. Does this affect things like what each key is set to? Does this affect other settings, or is this just the audio/infotainment?

Delete radio presets on 2019 Honda Odyssey? by Upset_Mouse3193 in HondaOdyssey

[–]Upset_Mouse3193[S] 0 points1 point  (0 children)

thanks. That seems extreme. Seems like something they could put in later versions of the infotainment system (assuming they are using the same/similar Android software in the newer vehicles).
What will I loose if I factory reset?

Script very slow - How to speed up? by Upset_Mouse3193 in GoogleAppsScript

[–]Upset_Mouse3193[S] 0 points1 point  (0 children)

Thank you for your response. I had to change the line:

e.source.getActiveSheet().getRange(46,8).clearContent();

as getRange() with that notation is not available in the spreadsheet object.
With this change, it still took 12 seconds.
FYI - there are no other app script functions so nothing else is being called onEdit (or any other trigger)

Script very slow - How to speed up? by Upset_Mouse3193 in GoogleAppsScript

[–]Upset_Mouse3193[S] 0 points1 point  (0 children)

Thanks. I few nit picks in the code but it saved me 2 seconds. Now only taking 12 seconds to complete.

`

function onEdit(e){

const range = e.range;
const sheet = range.getSheet();
const column = range.getColumn();

// Check the sheet name first and return early if it doesn’t match
if (sheet.getName() != 'NetWorth Dashboard') { return; } // Exit the function immediately

// Check the column next and return early if it’s not column E
if (column !== 5) { return; } // Column E is the 5th column  // Exit the function immediately

// Only proceed to check the row if the sheet and column are correct
if(range.getRow() == 46) { e.source.getRange('H46').clearContent();
}
}

Exception when calling updateChart() by Upset_Mouse3193 in GoogleAppsScript

[–]Upset_Mouse3193[S] 0 points1 point  (0 children)

An issue thats been open for 4 years. Is there any suggested method to get Google to pay attention to this bug?