Two options:
1. Right-click the field > Format Field > Number tab > Customize... > Use Rounding and Decimal formulas here
2. another option is to convert the number to string like:
If { @Numeric2 } = 100 then "100" else Totext ( {@Numeric2 } , 2)
Add comment