Hello,
I am looking for a way to add a translation to my units of measurement.
Example STK (piece) -> PCE (Piece)
Hello,
I am looking for a way to add a translation to my units of measurement.
Example STK (piece) -> PCE (Piece)
Best answer by ernst97
I have now configured it via an IIf query in the report itself:
=IIf([Customer.LocaleName]<>'de-DE',
Switch(
[SOLine.UOM]='STK', 'pce',
[SOLine.UOM]='KG', 'KG',
[SOLine.UOM]='M', 'M',
[SOLine.UOM]='MTR', 'M',
[SOLine.UOM]='QM', 'QM',
[SOLine.UOM]='STÜCK', 'pce',
[SOLine.UOM]='L', 'L',
),
[SOLine.UOM]
)
Thanks for your help / ideas
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.