I am creating a computed column across fields of which some are potentially null.
The problem is that if any of those fields is null, the entire computed column will
Use COALESCE. Instead of your_column use COALESCE(your_column, ''). This will return the empty string instead of NULL.
your_column
COALESCE(your_column, '')