LINQ Reporting Engine - I have a 2 decimal numbers and multiply those and display only fixed decimal in document

<<[Product.Rate] * [Product.Number]>>
I want to display one 3 or 4 decimal places how to specify the syntax…

@Keerthana_K_R

To multiply two numbers, the syntax should be corrected to <<[Product.Rate * Product.Number]>>.

Formatting of an expression depends on which platform (i.e. .NET or Java) is used. For example, it could be “0.00” which works for both of the platforms. The syntax for this should be <<[Product.Rate * Product.Number]:"0.00">>.

For more information on formatting expression results, please see Outputting Expression Results in C# or Outputting Expression Results in Java respectively.