Hi @Josh_Jennings - don’t think you can do this with a formula, but you can achieve it with a script block:
// @ts-nocheck
let table = base.getTable("Table");
let tableQuery = await table.selectRecordsAsync();
for (let record of tableQuery.records) {
let result = record.getCellValueAsString("Name");
let updateValue = String.fromCharCode(result);
await table.updateRecordAsync(record, {
"Result": updateValue
})
}
JB