<< This table gets updated as a result of shipping choosing to package orders so it really cannot be a view. >>
It's very easy to define a single-table view with the extra column you need and just use that view to feed the Listview. I do this all the time. Keep the table exactly as is for the purposes of editing, updating, etc. But add the view for the purposes of display. Alternatively (and I really prefer the view solution), just use the table but add a computed column to it to determine the font color. -- Larry

