I'm working on developing a series of reports. These reports require various columns to be formatted for numbers, currency, percentages, etc etc.
Typically to accomplish this I use an expression, something like:
=FormatPercent(Fields!NewItems.Value,2)
This works just fine. I've just recently become aware of a Format property on the text box that takes in a format string such as p2 for the example above.
Are there specific cases for using the expression over the property? The property is slightly more cryptic, requiring the dev to know the valid format strings, but it's also faster to simply enter p2 for a group of text boxes rather than going into the expression of each one individually.
