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.
我想创建一个报告,在值前面显示欧元/英镑/印度卢比符号。但根据我目前的水晶报表设置,我只能添加美元符号作为货币符号。
我想创建报告,我将在其中将货币从美元转换为欧元/英镑/印度卢比/...所以我想要动态添加货币符号的代码。
那么有人可以帮帮我吗?
** 编辑 **
如果您需要更大的灵活性,可以向货币符号添加自定义公式:
Select {table.currency_code} Case "USD","CAD": "$" Case "EUR": "€" Case "GBP": "£" // todo: add more symbols Default : "$"