Formule example
if(
prop("Etat")=="Activée",
if(prop("Dernière sauvegarde").empty(),
style("⚠️ Problème ⚠️","b","red_background"),
if(dateBetween(prop("Dernière sauvegarde"),dateSubtract(now(),3,"days"),"days")>3,
style("⚠️ Problème ⚠️","b","red_background"),
"✅ OK"
)
),
"--"
)