Forum Discussion
Anonymous
7 years agoNot applicable
Flag based on multiple dates in a row. Including blanks
Hi, I have rows containing dates (as below) where i am trying to create a flag that takes the blank cells into account. I want to be able to flag whether a quote date was after the em1 date, but...
v-cherch-msft
7 years agoMicrosoft Employee
Hi Anonymous
You may have a look at below formula to check if they match your request. If it is not your case, please explain more about the expected output when em1,2,or 3 have a blank.
Logic1 = IF(Test[Quote Date]>Test[EM2],1)
Logic2 = IF(Test[Quote Date]<Test[EM2]||Test[EM2]=BLANK(),1)
Logic3 = IF(Test[Quote Date]<Test[EM3]||Test[EM3]=BLANK(),1)
Final = IF(Test[Logic1]&&Test[Logic2]&&Test[Logic3]&&1,Test[Quote Date])
Regards,
Cherie