function onEdit(e) {
var activeSheet = e.source.getActiveSheet();
if (activeSheet.getName() == "Designer_Data","Quotation_Data","Quotation_Rev_Data","Drafter_Layout","Drafter_TD") { // Put the name of the specific worksheet between the quotation marks. For multiple sheets put the sheet name between the quotes(" ") followed by a comma and so on.
var aCell = e.source.getActiveCell(), col = aCell.getColumn();
if (col == 10) { // Number of the column with checkboxes
var dateCell = aCell.offset(0,4); // In offset, put number of rows away (- is up, + is down) and number of columns away (- is left, + is right)
if (aCell.getValue() === true) {
var newDate = Utilities.formatDate(new Date(), "GMT+1", "dd/MM/yyyy");
dateCell.setValue(newDate);
} else {
dateCell.setValue("");
}
}
}