Hi @Quentin_Guestin,
Welcome to Airtable Community! :grinning_face_with_big_eyes:
You need an IF OR formula. So the formula would be
IF(OR(IS_AFTER(TODAY(),{Date 1}), IS_AFTER(TODAY(),{Date 2}),IS_AFTER(TODAY(),{Date 3})), ‘Published
’, ‘To publish
’)
BR,
Mo
Hi @Quentin_Guestin,
Welcome to Airtable Community! :grinning_face_with_big_eyes:
You need an IF OR formula. So the formula would be
IF(OR(IS_AFTER(TODAY(),{Date 1}), IS_AFTER(TODAY(),{Date 2}),IS_AFTER(TODAY(),{Date 3})), ‘Published
’, ‘To publish
’)
BR,
Mo
Oh my god, thank you so much ! It’w working !
And one detail, if I want an empty cell when all date field are empty, what I suppose to write in the formula ?
Oh my god, thank you so much ! It’w working !
And one detail, if I want an empty cell when all date field are empty, what I suppose to write in the formula ?
My pleasure
As for the empty cells, you can do this:
IF(AND({Date 1}=BLANK(),{Date 2}=BLANK(),{Date 3}=BLANK()),BLANK(),
IF(OR(IS_AFTER(TODAY(),{Date 1}), IS_AFTER(TODAY(),{Date 2}),IS_AFTER(TODAY(),{Date 3})), ‘Published
’, ‘To publish
’))
My pleasure
As for the empty cells, you can do this:
IF(AND({Date 1}=BLANK(),{Date 2}=BLANK(),{Date 3}=BLANK()),BLANK(),
IF(OR(IS_AFTER(TODAY(),{Date 1}), IS_AFTER(TODAY(),{Date 2}),IS_AFTER(TODAY(),{Date 3})), ‘Published
’, ‘To publish
’))
It’s really perfect, thank you Mohamed !