In RDLC, one of the columns is 2.099. I want it to be 2.09. I already used the Format and FormatNumber function in the RDLC expression. But the result is 2.10. But I need 2.09. How??
I tried as follows:
= FormatNumber (Sum (Switch!) IsConsiderGPA.Value) = True, (Fields! Credit.Value) * (Fields! GPA.Value)) / Sum (Switch (Fields! IsConsiderGPA.Value = True, (Credit.Value fields !))), 2)
= Format (Sum (Switch ((Fields! IsConsiderGPA.Value) = True, (Fields! Credit.value) * (Fields! GPA.Value))) / Sum (Switch (Fields! IsConsiderGPA.Value = True, (Credit Fields .Value!))), "N")
= Format (Sum (Switch ((Fields! IsConsiderGPA.Value) = True, (Fields! Credit.value) * (Fields! GPA.Value))) / Sum (Switch (Fields! IsConsiderGPA.Value = True, (Credit Fields .Value!))), "D")
And also changed the Number type in the text box properties. But failed .....
source
share