I am trying to use the following generic script, and only apply it to a specific column. How would I specify this to say, column F within the sheet?
function onEdit(e){
// Set a comment on the edited cell to indicate when it was changed.
var range = e.range;
range.setNote('Last modified: ' + new Date());
}