in my datagrid I have a field that returns a number I would like to format the number:

1 = reconciled
2 = unreconciled

how do I format that field?

heres my tablestyle layout for that field...

VB Code:
  1. Dim grdColStyle10 As New DataGridTextBoxColumn()
  2.         With grdColStyle10
  3.             .HeaderText = "Status"
  4.             .MappingName = "status_ind"
  5.            .Width = 50
  6.             .Alignment = HorizontalAlignment.Center
  7.             .ReadOnly = True
  8.         End With