I have 3 date fields, each from a different table, and would like to use a formula that shows only one date based on the following conditions:
If cld_desired_ship_date is null, return cl_desired_ship_date, but if cl_desired_ship_date is null, return co_desired_ship_date.
The table (CLD) containing cld_desired_ship_date is joined with a left outer join - not every record in the 2 other tables (CL and CO) has an entry in the CLD table.
If cld_desired_ship_date is null, return cl_desired_ship_date, but if cl_desired_ship_date is null, return co_desired_ship_date.
The table (CLD) containing cld_desired_ship_date is joined with a left outer join - not every record in the 2 other tables (CL and CO) has an entry in the CLD table.