I'm stuck. I have five separate Date Fields in my record. For a report I'm doing, I only have room for one Date. I need to be able to determine which of these five Dates is the latest. This is the pseudocode for what I need to do but can't get a handle on the Access capability.
If Date5 is not Null, make printed date Date5 else
If Date4 is not Null, make printed date Date4 else
If Date3 is not Null, make printed date Date3 else
If Date2 is not Null, make printed date Date2 else
If printed date is still Null, make printed date Date1.
Any pointers would be appreciated.
If Date5 is not Null, make printed date Date5 else
If Date4 is not Null, make printed date Date4 else
If Date3 is not Null, make printed date Date3 else
If Date2 is not Null, make printed date Date2 else
If printed date is still Null, make printed date Date1.
Any pointers would be appreciated.