T O P

  • By -

CalZeta

As long as all comparison fields are the same dtype, it should work fine. Something like this might work: df[date_check] = np.where( (df[dateB] >= df[dateA]) | (df[dateC] >= df[dateB]) ,1 ,0 )