Use the IsNull( ) function. If this is for a text control, you could do this on the DataRow's OnRead( ) method:
If IsNull(ColumnA) Then
ColumnA = "Not Found"
End If
Or, you could use the IIF expression in the control's ValueExp expression:
IIF(IsNull(ColumnA), "Not Found", ColumnA)