Is it possible to convert integer values into ASCII characters in Formula columns? Pseudo code example: convertToChar(71) returns the char ‘G’.
Page 1 / 1
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
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.