是否可以在 SSRS 表达式中使用带参数的 AX 标签

Is it possible to have an AX Label with Paramters in a SSRS Expression

我想知道是否有办法完成以下操作。

AX中有一个标签,我们称它为@SYS123,其中包含以下值:The sum of {1} and {2} is {3}.

我想在 SSRS 表达式中使用这个标签,并且正在朝这个方向思考:=System.String.Format(Labels!@SYS123, "4", "5", "9")

但这只会给我#Error。

有没有办法做到这一点,或者我是否需要连接字符串和值以获得所需的输出?

我想使用 Label 的原因是多语言支持。

欢迎任何意见

创建标签值:The sum of {0} and {1} is {2}.

Composite format 字符串是从 0 开始的。