I'll do my best to describe what I am attempting to perform.
My data has 2 fields, aside from many other.
The first is assigned the date/time the entry was made [Entered]
The second is assigned the date/time that the value was updated [Updated]
If [UpdatedDateTime] is NULL, that means the data was not adjusted from initial entry and I would like to return [EnteredDateTime] as the value.
If [UpdatedDateTime] is not NULL, then I want the [UpdatedDateTime] value to override the [EnteredDateTime] value.
[EnteredDateTime] will always have a value.
I want the values to be listed in the same column, I know I can have columns for each value, but trying to make the report cleaner.
I tried:
CASE UpdatedDateTime
WHEN NULL THEN EnteredDateTime
END AS 'Entry Date/Time'
...but no values are listed when [UpdatedDateTime] is NULL.