本文介绍了应用脚本与换行符连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用Google Apps脚本换行:
I'm trying to get a line break with my Google apps script:
ss.getRange('Y'+ lastRow).setFormula('CONCATENATE(F'+ lastRow +'&'\ n'& G'+ lastRow +'&"" H'+ lastRow +')')
我没有看到换行符.有什么想法吗?
I'm not seeing a line break though. Any ideas?
推荐答案
您可以使用模板文字
要实现您的目标,只需将第二行放在新行中:
You can use template literals
To achieve your goal just put the second line into a new row:
ss.getRange('Y'+lastRow).setFormula
(
`CONCATENATE(F${lastRow}&" "
&G${lastRow}&" "&H${lastRow})`
)
这篇关于应用脚本与换行符连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!