Hi,
<igtbl:UltraGridColumn Key="TEST" BaseColumnName="TEST" Format="$###,###.00">
<Header Caption="TEST>
</igtbl:UltraGridColumn>
If a cell has 0.00 for this column, I need to replace it with - .I do not want to show $0.00.
Quick responses are highly appreciated.
Thanks in advance.
Off the top of my head hmmmmm
Protected Sub grid_InitializeRow...If e.Row.Cells(1).Value = "0.00" Then e.Row.Cells(1).Text = "-"End IfEnd Sub