Is there any way I can setup my datagrid to only display values that are not null?

For instance...
if I have the items and values below:

Name: John Smith
Age: NULL
Location: USA
SSN: NULL

Name: Jim Carter
Age: 72
Location: USA
SSN: NULL

Name: Dick Smith
Age: 80
Location: Germany
SSN: NULL

I only want my datagrid to show the following

Name Age Location

because all of the SSN's are NULL

If a datagrid won't do this, then is there a way to display my data that would?

Thanks,

Squirrelly1