Sub B4XTable1_DataUpdated 'Col 1 and Col2 are the names of the 2 columns I am interested in
For i = 0 To B4XTable1.VisibleRowIds.Size - 1
For Each c As B4XTableColumn In Array (B4XTable1.GetColumn("Col 1"), B4XTable1.GetColumn("Col 2"))
Dim pnl As B4XView = c.CellsLayouts.Get(i+1)
If pnl.GetView(c.LabelIndex).Text="Total" Or pnl.GetView(c.LabelIndex).Text="99" Then
pnl.GetView(c.LabelIndex).Font = xui.CreateDefaultBoldFont(32)
Else
pnl.GetView(c.LabelIndex).Font = xui.CreateDefaultFont(16)
End If
Next
Next
End Sub