I'm trying to make a view that uses organization name from one table
and contact first and last name from another table. In the view I
have a field that I want to show Organization followed by the main
contact. Problem is if the organization field or name field is NULL
then it doesn't show anything. If one field is empty I still want it
to show the other field in the table.
Example:
Org1--Contact
Org2--Contact
Org3 (Still shows org even without a contact name)
Contact (Still shows contact even without an org name)
Tried using a CASE statement but didn't work.
and contact first and last name from another table. In the view I
have a field that I want to show Organization followed by the main
contact. Problem is if the organization field or name field is NULL
then it doesn't show anything. If one field is empty I still want it
to show the other field in the table.
Example:
Org1--Contact
Org2--Contact
Org3 (Still shows org even without a contact name)
Contact (Still shows contact even without an org name)
Tried using a CASE statement but didn't work.
Comment