cleaned_up_sheet = {
const raw_sheet = raw_data.sheet("Other high priority openings", {headers: true});
return raw_sheet.map((d) => {
const each_city = d.Location.split("\n");
const BU = d['BU '];
const job_title = d['Job Title '];
const other_titles = d['Other titles'];
return {BU, job_title, other_titles, each_city};
});
}