I have a Microsoft SQL Query:
SELECT case
when ReHired Is Null Then HireDate
else ReHired
end CheckDate
FROM
Employees
This of course creates a column -- CheckDate -- using either the HireDate or Re-HiredDate.
How can I port this same functionality to Crystal Reports?