Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Date column less than another date column

Hello,    I have 2 date columns and I want to figure out if date column A is less than date column B then show me date column A.    Also    If date column B is blank show me date column A.    ...
  • Anonymous's avatar
    Anonymous
    6 years ago

    Anonymous 

    Or If you want a measure: 

     

    Measure = IF(MAX([Date1])<MAX([Date2])||ISBLANK(MAX([Date2])),MAX([Date1]),BLANK())

     

    Best regards
    Paul Zheng