Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将数字从 格式化1,234.25为1 234,25。我尝试了以下合并字段格式,但没有给出预期的结果{MergeField token \# "# ###,##"}。我整天都在谷歌上搜索,但没有运气。
1,234.25
1 234,25
{MergeField token \# "# ###,##"}
你可以做一些数学来重新格式化你的输出。
例如,您希望将“token”格式化为:zł100,01 from 100.01
尝试以下
zł{= INT({MERGEFIELD token})},{=INT({MERGEFIELD token}*100) - INT({MERGEFIELD token})*100)
上面,您可以看到如何分别计算整数部分和小数部分,并在它们之间手动放置“,”。
注意: {=}应作为类似于{ MERGEFIELD }的邮件合并字段输入
干杯, 凯文