如何修复 Google 工作表 RTL?

How to Fix Google Sheets RTL?

我正在尝试在 Google 表格中使用 Kharosthi 脚本,它是从右到左的。在 Google 表格中,脚本在单元格编辑模式下正确显示,但一旦确认它会返回到从左到右。

Selected
Deselected

转到“文件”>“电子表格设置”并将区域设置更改为 RTL 语言


最后一个选项是使用公式或脚本来反转字符串

function REVERSE(string) {
  if (typeof string != 'string') {
    return null;
  }
  return string.split('').reverse().join('');
}

=REVERSE(A1)

或没有脚本:

=JOIN(, INDEX(MID(A2, LEN(A2)-ROW(INDIRECT("1:"&LEN(A2)))+1, 1)))