Just some sample code for you, edit as you wish (I think this is right from what I understand from your post)
Protected Sub GridView1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.GridItemEventArgs)
'Is it a GridDataItem
If (TypeOf (e.Item) Is GridDataItem) Then
'Get the instance of the right type
Dim dataBoundItem As GridDataItem = e.Item
'Check the formatting condition
If (Integer.Parse(dataBoundItem( "Size").Text) > GridItemType.Footer) Then
dataBoundItem( "Received").ForeColor = Color.Red
dataBoundItem( "Received").Font.Bold = True
'Customize more...
End If
End If JJCollins
Junior Poster in Training
67 posts since Sep 2010
Reputation Points: 14
Solved Threads: 10