There are two ways, depending on how your field is set up in the report. The first thing you'll want to do is load up the report in Report Builder.
First I want to ensure that you have the properties pane visible, so under the view tab group on the ribbon, ensure you have the Properties pane set to visible:
![View tab group showing check boxes for Report Builder panes]()
Formatting a field/expression value in textbox
If the field is in a text box containing multiple expressions, like this, where [DateTimeField] is the actual field from your dataset:
![Image of a text box with the text "Time:" and a field named DateTimeField]()
Then you will select the field item itself:
![Selection of the field named DateTimeField]()
Then, on the properties pane, you should see a "Format" setting. Set the format to "hh:mm", as shown:
![The report builder window showing the format property of the field DateTimeField]()
Formatting an entire textbox
If your field in the report builder looks like this, you can set a formatting on the entire textbox:
![Image of a cell in the report containing only a single field or expression]()
Select the textbox or cell:
![The cell selected]()
And in the properties pane you can set the Format property to "hh:mm" to get the desired formatting on the item:
![Report builder window showing the properties pane and the Format property set]()
If all else fails
Convert the data to the data type you know Report Builder can format, such as a Date type, and then format it there. To do this, you'll need to right click the field in question and select "Expression":
![Context menu of right clicking on the DateTimeField field and showing the Expression menu item]()
Then you'll need to set the expression to wrap it in a CDate conversion function and then in a Format function, like so:
![Expression panel showing the DateTimeField expression being coerced to a Date type and then formatted.]()
Formatting other data in your report
For more information on the valid formats, see these four pages from Microsoft's MSDN Library:
- Standard Numeric Format Strings
- Custom Numeric Format Strings
- Standard Date and Time Format Strings
- Custom Date and Time Format Strings