A Simple Datagrid Question?
Hello. It is perhaps a simple Datagrid problem, but it's held me for ages. I am getting data from a simple Access database which I exhibit in a Datagrid. At times values (numeric and text) are missing and the Datagrid shows "(null)". Can the grid be made to show "N/A" (say) for values that are not available?
Thanks in advance!
ABPosted Feb 15, 2006, 6:41 PM
Binu SubiPosted Feb 15, 2006, 4:03 PM
Or
when you query the data from the database, use ISNULL() function to have your custom value if the column value is null,
ex: SELECT ISNULL(process_date, 'N/A' ) AS ProcessDate FROM Process
Cheers!