Ditar mensagens e documentos no Mac
Have your Mac speak text that’s on the screen
Как использовать субтитры, титры или выбрать язык аудио
Automatically check the checkbox property when a value is entered in the "xxx (today)" numeric property:
if(prop("New Words (today)") > 0, true, false)
"In Progress" status when at least one checkbox is checked
if(prop("New words") and prop("Grammar") and prop("Phrases") and prop("Video lessons") and prop("Films / Series") and prop("Listening") and prop("Texts") and not(prop("Activity of choice")), "Success!", if(prop("New words") and prop("Grammar") and prop("Phrases") and prop("Video lessons") and prop("Films / Series") and prop("Listening") and prop("Texts") and prop("Activity of choice"), "Success!", if(prop("New words") or prop("Grammar") or prop("Phrases") or prop("Video lessons") or prop("Films / Series") or prop("Listening") or prop("Texts") or prop("Activity of choice"), "In Progress", "Incomplete")))
To count the number of checkbox properties that have been checked in a Notion database
if(prop("New Words"), 1, 0) + if(prop("Grammar"), 1, 0) + if(prop("Phrases"), 1, 0) + if(prop("Video lessons"), 1, 0) + if(prop("Films / Series"), 1, 0) + if(prop("Listening"), 1, 0) + if(prop("Texts"), 1, 0)